import type { Dispatch, SetStateAction } from 'react'; declare type UseControlled = ( propValue: ValueType | undefined, defaultValue: ValueType, component?: string, state?: string, ) => [ValueType, Dispatch>]; declare const useControlled: UseControlled; export default useControlled;