import { BaseInputProps } from "../../BaseInput/BaseInput"; type BaseInputExposedProps = Omit; export interface PasswordBaseInputProps extends BaseInputExposedProps { type?: "password" | "text"; } /** * A thin wrapper around the `BaseInput` component for password input fields. * * NOTE: If shown with a label, please use the `PasswordField` component instead. */ export declare const PasswordBaseInput: ({ ref, fieldSize, ...rest }: PasswordBaseInputProps) => import("react/jsx-runtime").JSX.Element; export {};