import { BaseInputProps } from "../../BaseInput/BaseInput"; export type TextBaseInputProps = Omit; /** * A thin wrapper around the `BaseInput` component for text input fields. * * NOTE: If shown with a label, please use the `TextField` component instead. */ export declare const TextBaseInput: ({ ref, ...rest }: TextBaseInputProps) => import("react/jsx-runtime").JSX.Element;