import type { BaseProps } from '../../type/component';
interface Tab {
    id: string;
    label: string;
    icon?: any;
    disabled?: boolean;
}
interface Props extends BaseProps {
    tabs: Tab[];
    activeTab?: string;
    onTabChange?: (tabId: string) => void;
}
declare const TabBar: import("svelte").Component<Props, {}, "activeTab">;
type TabBar = ReturnType<typeof TabBar>;
export default TabBar;
//# sourceMappingURL=TabBar.svelte.d.ts.map