/// export interface IValueProps { init?: any; children?: (state: any) => React.ReactElement; render?: (state: any) => React.ReactElement; } export declare const Value: React.StatelessComponent; export declare const faccToHocInit: (Facc: any, name: any) => (Comp: any, name2?: any, init?: any) => any; export declare const withValue: (Comp: any, name2?: any, init?: any) => any;