export interface PasswordRequirementLabels { minChars: string; uppercase: string; lowercase: string; number: string; } export interface PasswordInputProps extends Omit, 'type'> { showRequirements?: boolean; showToggle?: boolean; password?: string; requirementLabels?: PasswordRequirementLabels; } declare const PasswordInput: import("react").ForwardRefExoticComponent>; export { PasswordInput }; //# sourceMappingURL=password-input.d.ts.map