import { default as React } from 'react'; import { UseInput, UseInputActions } from './useInput'; export declare type BindToInput = { eventBind: { onChange: (e: React.SyntheticEvent) => void; value: string; }; valueBind: { onChange: React.Dispatch; value: string; }; }; export declare type UseBindToInput = [[string, boolean], UseInputActions, BindToInput]; export declare function useBindToInput(useInputResult: UseInput): UseBindToInput; export default useBindToInput;