import { BoxProps } from '../Box'; interface StyleProps { fullWidth?: boolean; error?: boolean; sx?: BoxProps['sx']; inputSx?: BoxProps['sx']; height?: number | string; suffixGap?: number; } export interface InputProps extends StyleProps, React.InputHTMLAttributes { suffix?: string | React.ReactNode; prefix?: string | React.ReactNode; errorMsg?: string; dataTestId?: string; } declare const _default: import("react").ForwardRefExoticComponent>; export default _default;