import { FieldValidationProps } from '../../composables/unifyValidation/useValidation'; import { CustomizableOptions } from '../../composables/useCustomizableOptions'; import { ColorType } from '../Customs/SyTextField/types'; export interface PasswordFieldProps extends CustomizableOptions, FieldValidationProps { modelValue?: string | null; variantStyle?: 'outlined' | 'underlined'; color?: ColorType; label: string; clearable?: boolean; placeholder?: string; displayAsterisk?: boolean; bgColor?: string; autocompleteType?: 'current-password' | 'new-password'; helpText?: string; hideDetails?: boolean; }