import { SetStateAction } from 'react'; export interface FiledState { value?: Value; defaultValue?: Value; onChange?: (val: Value, ...args: OnChangeOtherArgs) => void; } type SetFiledState = (val: SetStateAction, ...args: OnChangeOtherArgs) => void; export declare function useFiledState(options: FiledState, isCtrl?: boolean): [Value, SetFiledState]; export {};