import { EventEmitter } from '../../stencil-public-runtime'; /** * Individual tab component - self-contained with label and content panel * @slot - Default slot for tab content */ export declare class BcmTab { el: HTMLElement; /** * Unique identifier for this tab */ value: string; /** * Label text to display in tab button */ label: string; /** * Disabled state */ disabled: boolean; /** * Active state (controlled by parent) */ active: boolean; /** * Size variant (inherited from parent) */ size: 'sm' | 'md' | 'lg'; /** * Internal event emitted when tab button is clicked */ bcmTabClick: EventEmitter; render(): any; }