import { PrimaryTabBarRoot } from "./PrimaryTabBarRoot"; import { PrimaryTabBarList } from "./PrimaryTabBarList"; import { PrimaryTabBarTrigger } from "./PrimaryTabBarTrigger"; import { PrimaryTabBarContent } from "./PrimaryTabBarContent"; import { PrimaryTabBarOverflowIndicator } from "./PrimaryTabBarOverflowIndicator"; import { PrimaryTabBarExtras } from "./PrimaryTabBarExtras"; type StaticComponents = { Root: typeof PrimaryTabBarRoot; List: typeof PrimaryTabBarList; Trigger: typeof PrimaryTabBarTrigger; Content: typeof PrimaryTabBarContent; OverflowIndicator: typeof PrimaryTabBarOverflowIndicator; Extras: typeof PrimaryTabBarExtras; }; /** * A page-level tab bar with rounded card-style tabs for navigating between sections. * Built on top of {@link https://www.radix-ui.com/primitives/docs/components/tabs @radix-ui/react-tabs}. * * @example * * ```tsx * * * * Program 1 * 2 * * * Program 2 * * * * * 2 more programmes * * * * * * * * ... * ... * * ``` */ export declare const PrimaryTabBar: StaticComponents; export {};