import type { IAppearanceableProps } from '../../../Behaviors/Appearanceable'; import type { IClearableProps } from '../../../Behaviors/Clearable'; import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IDropDownableProps } from '../../../Behaviors/DropDownable'; import type { IInvalidableProps } from '../../../Behaviors/Invalidable'; import type { ILabelableProps } from '../../../Behaviors/Labelable'; import type { ILocaleableProps } from '../../../Behaviors/Localeable'; import type { IValueableProps } from '../../../Behaviors/Valueable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; import type { IInputBaseProps } from '../Abstracts/InputBase'; import type { ICalendarElementProps } from '../Calendar/ICalendarElementProps'; import type { TextAlignment } from '../../../Types/TextAlignment'; /** * Represents the `IDateBoxElementProps` interface. * * @public */ export interface IDateBoxElementProps extends IDisableableProps, IValueableProps, IVariantableProps, IAppearanceableProps, IDropDownableProps, IInputBaseProps, ILabelableProps, IInvalidableProps, IClearableProps, ILocaleableProps, Omit { value: Date | null; readonly: boolean; required: boolean; autofocus: boolean; name: string; placeholder: string; autocomplete: boolean; invalid: boolean; format: string; textAlign: TextAlignment; } //# sourceMappingURL=IDateBoxElementProps.d.ts.map