import type { FlowDirection } from '../../../Types/FlowDirection'; import type { Variant } from '../../../Types/Variant'; /** * Interface for properties inherited by child SegmentItemElements. * * @public */ export interface ISegmentInherited { /** * Inherited disabled state. */ disabled?: boolean; /** * Inherited variant. */ variant?: Variant; /** * Inherited flow direction. */ dir?: FlowDirection; } /** * Context for Segment → SegmentItem inheritance. * * @public */ export declare const SEGMENT_INHERITANCE_CONTEXT: { __context__: Partial; }; //# sourceMappingURL=SegmentInheritanceContext.d.ts.map