import { NamePath } from '@/types/types'; export declare type ModelObj = Record; declare type TValueFunData = { name: NamePath; isReset?: boolean; }; export declare type ValueFunType = (data: TValueFunData) => void; export default class ValueObserver { subs: { [key: string]: ValueFunType; }; dispatch: (state: TValueFunData) => void; subscribe: (fun: ValueFunType) => () => void; } export {};