import { SvelteComponentTyped } from "svelte"; import type Icons from '../Icon/Icon.svelte'; interface Item { title: string; path?: string; target?: string; icon?: Icons; badge?: string; clear?: boolean; } export type { Icons, Item }; declare const __propDef: { props: { [x: string]: any; items?: Item[] | undefined; active?: string | number | undefined; block?: boolean | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: { item: Item; }; action: {}; }; }; export declare type TabsProps = typeof __propDef.props; export declare type TabsEvents = typeof __propDef.events; export declare type TabsSlots = typeof __propDef.slots; export default class Tabs extends SvelteComponentTyped { }