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'; /** * Represents the `IDurationBoxElementProps` interface. * * @public */ export interface IDurationBoxElementProps extends IValueableProps, IDisableableProps, IVariantableProps, ILabelableProps, IAppearanceableProps, IInvalidableProps, IClearableProps { value: number | null; readonly: boolean; required: boolean; autofocus: boolean; name: string; placeholder: string; } //# sourceMappingURL=IDurationBoxElementProps.d.ts.map