import type { Data, StoreType } from "../types/index.js";
/**
 * Hook that returns the values from the zustand store for the given paths.
 * @param paths paths for which to return values
 * @param initialData
 */
export declare function useValuesForPath(store: StoreType, paths: string[], initialData: Data): {
    [path: string]: any;
};
