import { Input, PasswordInput } from '@judo/model-api'; export interface PasswordInputComponentProps { element: PasswordInput | Input; readOnly?: boolean; value?: string; onChange?: (value: string) => void; error?: string; disabled?: boolean; } /** * Password input component with visibility toggle. */ export declare function PasswordInputComponent({ element, readOnly, value, onChange, error, disabled, }: PasswordInputComponentProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=PasswordInputComponent.d.ts.map