import React, { ChangeEvent } from "react"; import { Label } from "../Label"; import { Error } from "../Error"; export interface Props { id: string; label: React.ComponentProps; name?: string; marginTop?: number; onChange?: (event: ChangeEvent, ...args: unknown[]) => void; value?: string; autoFocus?: boolean; classes?: string; fieldId?: string; fieldClasses?: string; dataTestId: string; showPasswordText?: string; error?: React.ComponentProps; } export declare const Password: (props: Props) => React.JSX.Element;