import { LitElement } from 'lit';
/**
 * Represents a navigation drawer item.
 *
 * @element igc-nav-drawer-item
 *
 * @slot content - The content slot for the drawer item.
 * @slot icon - The slot for the icon of the drawer item.
 *
 * @csspart base - The base wrapper of the drawer item.
 * @csspart icon - The icon container.
 * @csspart content - The content container.
 */
export default class IgcNavDrawerItemComponent extends LitElement {
    static readonly tagName = "igc-nav-drawer-item";
    static styles: import("lit").CSSResult[];
    static register(): void;
    private readonly _slots;
    private _hasContent;
    /**
     * Determines whether the drawer is disabled.
     * @attr
     */
    disabled: boolean;
    /**
     * Determines whether the drawer is active.
     * @attr
     */
    active: boolean;
    constructor();
    protected _handleSlotChange(): void;
    protected render(): import("lit-html").TemplateResult<1>;
}
declare global {
    interface HTMLElementTagNameMap {
        'igc-nav-drawer-item': IgcNavDrawerItemComponent;
    }
}
