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 `IChoiceGroupElementProps` interface. * * @public */ export interface IChoiceGroupElementProps extends IValueableProps, IDisableableProps, IVariantableProps, IAppearanceableProps, IOrientableProps, IInvalidableProps, ISlottableProps { name: string; required: boolean; } //# sourceMappingURL=IChoiceGroupElementProps.d.ts.map