import type { BaseProps, ChangeHandler, InteractiveHandlers } from '../../type/component';
interface TabItem {
    id: string;
    label: string;
    disabled?: boolean;
}
interface Props extends BaseProps, ChangeHandler<string>, InteractiveHandlers {
    tabs: TabItem[];
    activeTab?: string;
    size?: 'small' | 'medium' | 'large';
    fullWidth?: boolean;
}
declare const Tabs: import("svelte").Component<Props, {}, "activeTab">;
type Tabs = ReturnType<typeof Tabs>;
export default Tabs;
//# sourceMappingURL=Tabs.svelte.d.ts.map