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