import type { ValuesOf } from '../../Types/ValuesOf'; /** * `TabStripPlacement` - The `TabStripPlacement` object is used to describe the different types of tab strip placements. * * @public */ export declare const TabStripPlacement: { /** * `left` - Position this child at the left of the remaining space. */ readonly Left: "left"; /** * `top` - Position this child at the top of the remaining space. */ readonly Top: "top"; /** * `right` - Position this child at the right of the remaining space. */ readonly Right: "right"; /** * `bottom` - Position this child at the bottom of the remaining space. */ readonly Bottom: "bottom"; }; /** * @public */ export type TabStripPlacement = ValuesOf; //# sourceMappingURL=TabStripPlacement.d.ts.map