import type { ValuesOf } from '../../Types/ValuesOf'; /** * `TabPanelAlignment` - The `TabPanelAlignment` object is used to describe the different types of tab panel alignments. * * @public */ export declare const TabPanelAlignment: { /** * `start` - Items are positioned at the beginning of the tab panel. */ readonly Start: "start"; /** * `end` - Items are positioned at the end of the tab panel. */ readonly End: "end"; /** * `center` - Items are positioned at the center of the tab panel. */ readonly Center: "center"; /** * `stretch` - Items are stretched to fill the tab panel. */ readonly Stretch: "stretch"; }; /** * @public */ export type TabPanelAlignment = ValuesOf; //# sourceMappingURL=TabPanelAlignment.d.ts.map