import type { FlowDirection } from '../../../Types/FlowDirection'; import type { Variant } from '../../../Types/Variant'; /** * Interface for properties inherited by child TabStripItemElements. * * @public */ export interface ITabStripInherited { /** * Inherited disabled state. */ disabled?: boolean; /** * Inherited variant. */ variant?: Variant; /** * Inherited flow direction. */ dir?: FlowDirection; } /** * Context for TabStrip → TabStripItem inheritance. * * @public */ export declare const TAB_STRIP_INHERITANCE_CONTEXT: { __context__: Partial; }; //# sourceMappingURL=TabStripInheritanceContext.d.ts.map