import { Attributes, Component } from 'jinge'; import { Tabs } from './tabs'; export interface TabAttrs { id?: string; data?: unknown; label?: string; to?: unknown; href?: string; disabled?: boolean; } export declare class Tab extends Component { static template: string; id: string; disabled: boolean; data: unknown; label: string; to: unknown; href: string; isActive: boolean; _hasContent: boolean; _Tabs: Tabs; constructor(attrs: Attributes); __beforeDestroy(): void; }