type $$ComponentProps = {
    items: {
        name: string;
        href?: string;
        onclick?: () => void;
    }[];
    active: string;
    class?: string;
};
declare const Tabs: import("svelte").Component<$$ComponentProps, {}, "">;
type Tabs = ReturnType<typeof Tabs>;
export default Tabs;
