import type { TemplateResult, CSSResultArray, PropertyValues } from 'lit'; import { PharosElement } from '../base/pharos-element'; /** * Pharos tab component. * * @tag pharos-tab * * @slot - Contains the content of the tab. * * @fires pharos-tab-selected - Fires when the tab is selected. * */ export declare class PharosTab extends PharosElement { /** * Indicates if the tab is selected. * @attr selected */ selected: boolean; private _focused; static get styles(): CSSResultArray; protected firstUpdated(): void; protected updated(changedProperties: PropertyValues): Promise; private _triggerSelectedEvent; private _handleClick; protected render(): TemplateResult; } //# sourceMappingURL=pharos-tab.d.ts.map