import { LitElement } from 'lit';
/**
 * Represents the content of a tab
 *
 * @element igc-tab-panel
 *
 * @slot - Renders the content.
 */
export default class IgcTabPanelComponent extends LitElement {
    static readonly tagName = "igc-tab-panel";
    static styles: import("lit").CSSResult;
    static register(): void;
    private static readonly increment;
    connectedCallback(): void;
    protected render(): import("lit-html").TemplateResult<1>;
}
declare global {
    interface HTMLElementTagNameMap {
        'igc-tab-panel': IgcTabPanelComponent;
    }
}
