import { FC } from 'react'; import { TextFieldInputProps } from '../../../TextField'; export type PasswordFieldInputProps = TextFieldInputProps; /** * `PasswordFieldInput` is the input element used within `PasswordField`. * * It switches between `type="password"` and `type="text"` based on the current * visibility state from `PasswordField` context and forwards refs to the * underlying input element. * * The component remains fully composable and does not manage state itself, * relying on context for visibility and disabled state. */ export declare const PasswordFieldInput: FC;