import './tab-bar'; import type { TemplateResult } from 'lit'; declare const _default: { title: string; component: string; argTypes: { activeIndex: { control: string; }; color: { control: string; options: (string | undefined)[]; }; }; parameters: { actions: { handles: string[]; }; }; }; export default _default; interface Story { (args: T): TemplateResult; args?: Partial; argTypes?: Record; } interface ArgTypes { activeIndex: number; color: string; stacked: boolean; isMinWidthIndicator: boolean; } export declare const BasicTabBar: Story; export declare const IconsExample: Story; export declare const IndicatorIconsExample: Story;