import { BaseInputProps, UseInputClearProps, UseInputRootSlotProps, UseInputSlotProps } from './use-input.type'; import { ObjectType } from '../../common/type'; declare const useInput: (params: BaseInputProps) => { focused: boolean; disabled: boolean | undefined; showClear: boolean | undefined; getRootProps: (externalProps?: TOther) => UseInputRootSlotProps; getInputProps: (externalProps?: TOther_1) => UseInputSlotProps; getClearProps: (externalProps?: TOther_2) => UseInputClearProps; }; export default useInput; //# sourceMappingURL=use-input.d.ts.map