import React from 'react'; import { InputCommonProps } from './input.type'; declare const useInputCommon: >(props0: Props) => Omit & { name: string | undefined; style: React.CSSProperties; suffix: import("react/jsx-runtime").JSX.Element; status: "error" | undefined; disabled: boolean | undefined; size: "small" | "large" | "default" | undefined; rootRef: React.RefObject; inputRef: React.Ref | undefined; renderInput: (el: React.ReactElement>) => import("react/jsx-runtime").JSX.Element; onFocusedChange: (focused?: boolean) => void; onClear: () => void; clearable: boolean; showClear: boolean; value: Value | undefined; className: string; onChange: (value: Value) => void; onBlur: (e: React.FocusEvent) => void; }; export default useInputCommon; //# sourceMappingURL=use-input-common.d.ts.map