import type { Appearance } from '../../../Types/Appearance'; import type { ExpandDirection } from '../../../Types/ExpandDirection'; import type { FlowDirection } from '../../../Types/FlowDirection'; import type { Variant } from '../../../Types/Variant'; /** * Interface for properties inherited by child ExpanderElements. * * @public */ export interface IExpanderGroupInherited { /** * Inherited disabled state. */ disabled?: boolean; /** * Inherited appearance. */ appearance?: Appearance; /** * Inherited variant. */ variant?: Variant; /** * Inherited flow direction. */ dir?: FlowDirection; /** * Inherited expand direction. */ direction?: ExpandDirection; } /** * Context for ExpanderGroup → Expander inheritance. * * @public */ export declare const EXPANDER_GROUP_INHERITANCE_CONTEXT: { __context__: Partial; }; //# sourceMappingURL=ExpanderGroupInheritanceContext.d.ts.map