/** * Creates a lazy singleton factory. * * The instance is created on first call and reused for all subsequent calls. * Useful for store clients that should be instantiated only when needed. */ export declare function createLazySingleton(factory: () => T): () => T; //# sourceMappingURL=lazy.d.ts.map