import { type IStoreProviderComponent } from "@leight/context"; import { type ICreateStore, type IStoreContext, type IStoreProps } from "@leight/zustand"; export interface ICreateProviderProps { name: string; createStore: ICreateStore; Context: IStoreContext; } export declare const withProvider: >({ name, createStore, Context, }: ICreateProviderProps) => IStoreProviderComponent; //# sourceMappingURL=withProvider.d.ts.map