import { BaseInputProps } from "../BaseInput"; export interface PasswordInputProps extends BaseInputProps { initialHidden?: boolean; } export declare const PasswordInput: ({ initialHidden, ...props }: PasswordInputProps) => import("@emotion/react/jsx-runtime").JSX.Element;