import type { Orientation } from '../../../Types/Orientation'; import type { Overflow } from '../../../Types/Overflow'; import type { Size } from '../../../Types/Size'; /** * Interface for properties inherited by child ActionbarGroup, ActionbarItem, * and ActionbarSeparator elements from the root Actionbar. * * @public */ export interface IActionbarInherited { /** * Inherited disabled state. */ disabled?: boolean; /** * Inherited orientation. */ orientation?: Orientation; /** * Inherited overflow behavior. */ overflow?: Overflow; /** * Inherited size. */ size?: Size; } /** * Context for Actionbar inheritance. * * @public */ export declare const ACTIONBAR_INHERITANCE_CONTEXT: { __context__: Partial; }; //# sourceMappingURL=ActionbarInheritanceContext.d.ts.map