import React from "react"; import { type FormFieldSize } from "../../../types/general.types"; import { type FormHeightNames } from "../../../system/Sizes"; import type { IconKey, IconProps } from "../Icons/types/IconProps.type"; export declare const StyledInput: React.ForwardRefExoticComponent, HTMLInputElement>, "ref">, "width"> & { suffix?: string; prefix?: string; icon?: React.FC | IconKey; width?: FormFieldSize | [FormFieldSize, FormFieldSize?, FormFieldSize?, FormFieldSize?, FormFieldSize?]; height?: FormHeightNames; isError?: boolean; isClearIconVisible?: boolean; onClickClearField?: () => void; } & React.RefAttributes>;