/// import { PopoverProps } from '../../../component/Popover/type'; interface UseInputStyleProps { border: boolean; size: 'small' | 'default' | 'large'; disabled?: boolean; className?: string; width?: React.CSSProperties['width']; style?: React.CSSProperties; popoverProps?: Omit; focus?: boolean; hasError?: boolean; } declare function useInputStyle(props: UseInputStyleProps): { className: string; style: import("react").CSSProperties; }; export default useInputStyle;