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