export declare const TabTypes: { readonly primary: "primary"; readonly secondary: "secondary"; readonly table: "table"; }; export type TabTypes = (typeof TabTypes)[keyof typeof TabTypes]; export declare const TabMode: { readonly passive: "passive"; readonly active: "active"; }; export type TabMode = (typeof TabMode)[keyof typeof TabMode];