import type { IconifyIcon } from "@iconify/types";
import type { HTMLInputAttributes } from "svelte/elements";
type $$ComponentProps = {
    secondary?: boolean;
    tab: string;
    items: {
        icon?: IconifyIcon;
        name: string;
        value: string;
    }[];
} & HTMLInputAttributes;
declare const Tabs: import("svelte").Component<$$ComponentProps, {}, "tab">;
type Tabs = ReturnType<typeof Tabs>;
export default Tabs;
