import type { IAppearanceableProps } from '../../../Behaviors/Appearanceable'; import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IInvalidableProps } from '../../../Behaviors/Invalidable'; import type { IOrientableProps } from '../../../Behaviors/Orientable'; import type { ISlottableProps } from '../../../Behaviors/Slottable'; import type { IValueableProps } from '../../../Behaviors/Valueable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; /** * Represents the `ICheckBoxGroupElementProps` interface. * * @public */ export interface ICheckBoxGroupElementProps extends IValueableProps, IDisableableProps, IVariantableProps, IAppearanceableProps, IOrientableProps, IInvalidableProps, ISlottableProps { name: string; required: boolean; } //# sourceMappingURL=ICheckBoxGroupElementProps.d.ts.map