import type { Appearance } from '../../../Types/Appearance'; import type { FlowDirection } from '../../../Types/FlowDirection'; import type { Variant } from '../../../Types/Variant'; /** * Interface for properties inherited by child ChoiceElements. * * @public */ export interface IChoiceGroupInherited { /** * Inherited disabled state. */ disabled?: boolean; /** * Inherited appearance. */ appearance?: Appearance; /** * Inherited variant. */ variant?: Variant; /** * Inherited name. */ name?: string; /** * Inherited flow direction. */ dir?: FlowDirection; } /** * Context for ChoiceGroup → Choice inheritance. * * @public */ export declare const CHOICE_GROUP_INHERITANCE_CONTEXT: { __context__: Partial; }; //# sourceMappingURL=ChoiceGroupInheritanceContext.d.ts.map