/** @jsx h */ import { SpsIcon } from "@spscommerce/ds-shared"; import { ClassBindings } from "../../decorators/index"; export declare class SpsNavTabComponent extends HTMLElement { static readonly displayName = "sps-nav-tab"; static readonly props: { active: string; label: string; icon: string; tag: string; href: string; target: string; }; active: boolean; label: string; icon: SpsIcon; tag: string; /** If you need the tab to operate as an HTML link, provide an href. */ href: string; /** If you provide href, target is the same attribute as on an element. */ target: string; get [ClassBindings](): string[]; render(): JSX.Element; }