import type { Atom, Store } from "@iniz/core"; export declare type extractStoreValue = T extends Atom ? extractStoreValue : T extends Store ? V : T extends { [k in keyof T]: any; } ? { [k in keyof T]: extractStoreValue; } : T; //# sourceMappingURL=types.d.ts.map