import React from 'react'; import { XFlowHookConfig } from '../module'; import { HookConfig } from '../config'; export interface IProps { config?: XFlowHookConfig; XFlowModuleType?: string; } export declare const HookRegistry: React.FC; interface IValueProxy { getValue: () => T; } export declare const createHookConfig: (addOptions: (config: HookConfig, container: IValueProxy) => void) => (value?: T) => any; export {};