import { type IStoreContext } from "@leight/context"; import { type IStateCreator, type IStoreProps } from "@leight/zustand"; export interface ICreateStoreContextProps { state: IStateCreator; name: string; hint?: string; } /** * Creates store hook and provider of Zustand. */ export declare const createStoreContext: >({ state, name, hint, }: ICreateStoreContextProps) => IStoreContext; //# sourceMappingURL=createStoreContext.d.ts.map