import { TextInputProps } from "./TextInput"; import { TextInputWithIconProps } from "./TextInputWithIcon"; declare const getInputElementProps: (props: TextInputProps) => TextInputProps; declare const getInputElement: (additionalClasses: string[] | undefined, isValid: boolean, describedBy: string, textInputProps: TextInputProps, getInputAppearance: (props: TextInputProps) => string, getInputElementProps: (textInputProps: TextInputProps) => TextInputProps) => JSX.Element; declare const getInputAppearance: (props: TextInputProps) => string; declare const getIconStartContent: (props: TextInputWithIconProps, appearance: string) => JSX.Element | null; declare const getIconEndContent: (props: TextInputWithIconProps, appearance: string) => JSX.Element | null; declare const getId: (props: TextInputProps) => string; export { getInputElementProps, getInputElement, getInputAppearance, getIconStartContent, getIconEndContent, getId };