import { default as React, SetStateAction } from 'react'; export declare type UseInputActions = { setValue: React.Dispatch>; onChange: (e: React.BaseSyntheticEvent) => void; clear: () => void; }; export declare type UseInput = [[string, boolean], UseInputActions]; export declare function useInput(initial?: string | number | boolean): UseInput; export default useInput;