import { Store } from 'effector'; export declare function reshape>({ source, shape, }: { source: Store; shape: { [ShapeKey in keyof Shape]: (value: Type) => Shape[ShapeKey]; }; }): { [ResultKey in keyof Shape]: Store | null : Shape[ResultKey]>; };