interface UseCustomizedInputProps { value?: T | null; formatStr: string; readOnly?: boolean; editable?: boolean; loading?: boolean; mode?: 'date' | 'dateRange'; renderValue?: (value: T, format: string) => string; } declare function useCustomizedInput(props: UseCustomizedInputProps): { customValue: string | null; Input: (import("../../internals/types").InternalRefForwardingComponent<"input", import("../../Input").InputProps, never> & Record) | (import("../../internals/types").InternalRefForwardingComponent & Record, import("../../DateInput").DateInputProps, never> & Record) | import("react").ForwardRefExoticComponent>; inputReadOnly: boolean; events: { onActive: () => void; onInactive: () => void; }; }; export default useCustomizedInput;