import { type InputBaseOwnProps } from "../InputBase"; import type { ThemeSize } from "../theme.types"; export interface TextInputProps extends InputBaseOwnProps, Omit, "size"> { size?: ThemeSize; } export declare function TextInput(props: TextInputProps): import("react").JSX.Element;