import { IcThemeMode } from "../../utils/types"; export declare class TabGroup { /** * If `true`, the tabs and tab panels will be positioned separately. */ inline?: boolean; /** * The label to describe the purpose of the set of tabs to screen reader users. */ label: string; /** @internal Determines whether black variant of the tabs should be displayed. */ monochrome?: boolean; /** @internal Determines whether the light or dark variant of the tabs should be displayed. */ theme?: IcThemeMode; componentDidLoad(): void; render(): any; }