/** * Very simple tab component. Use like a button, but with a caption. * Use standard onClick event to handle click. * @csspart tab-base The tab container * @csspart tab-caption The caption for the tab */ export declare class KlevuTab { /** * Title of the tab */ caption: string; /** * Whether the tab is active */ active?: boolean; /** * Whether the tab is disabled */ disabled?: boolean; render(): any; }