import { EventEmitter } from "../../stencil-public-runtime"; export declare class SmoothlyTabs { element: HTMLSmoothlyTabsElement; tabs: "always" | "multiple"; numberOfTabs: number; tabElements: HTMLSmoothlyTabElement[]; selectedElement: HTMLSmoothlyTabElement; smoothlyTabOpen: EventEmitter; removeTab(tab: HTMLSmoothlyTabElement): Promise; onInputLoad(event: CustomEvent<(smoothlyTabs: SmoothlyTabs) => void>): void; private isSmoothlyTabElement; openChanged(event: CustomEvent): void; onSelectedChange(value: HTMLSmoothlyTabElement, old: HTMLSmoothlyTabElement): void; render(): any; }