export interface ValueSubscription { name: string; zorm: { refObject: React.MutableRefObject; }; initialValue?: T; event?: string; transform?: (value: string) => T; } export declare function useValue(opts: ValueSubscription): undefined extends T ? string : T; export declare function Value(props: ValueSubscription & { children: (value: undefined extends T ? string : T) => any; }): any; //# sourceMappingURL=use-value.d.ts.map