import type { IAppearanceableProps } from '../../../Behaviors/Appearanceable'; import type { IClearableProps } from '../../../Behaviors/Clearable'; import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IInvalidableProps } from '../../../Behaviors/Invalidable'; import type { ILabelableProps } from '../../../Behaviors/Labelable'; import type { IValueableProps } from '../../../Behaviors/Valueable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; import type { TextAlignment } from '../../../Types/TextAlignment'; /** * Represents the `IPasswordBoxElementProps` interface. * * @public */ export interface IPasswordBoxElementProps extends IValueableProps, IDisableableProps, IVariantableProps, ILabelableProps, IInvalidableProps, IAppearanceableProps, IClearableProps { value: string; readonly: boolean; required: boolean; autofocus: boolean; name: string; pattern: string; placeholder: string; autocomplete: boolean; invalid: boolean; revealable: boolean; isReveal: boolean; textAlign: TextAlignment; } //# sourceMappingURL=IPasswordBoxElementProps.d.ts.map