import type { StringFormField } from '@douglasneuroinformatics/libui-form-types'; import type { BaseFieldComponentProps } from '../types.ts'; export type PasswordStrengthValue = 0 | 1 | 2 | 3 | 4; export type StringFieldPasswordProps = BaseFieldComponentProps & Extract; export declare const StringFieldPassword: ({ calculateStrength, description, disabled, error, label, name, readOnly, setValue, value }: StringFieldPasswordProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=StringFieldPassword.d.ts.map