import { EventEmitter } from '../../../stencil-public-runtime';
export declare class SlSecondaryNavItem {
    el: HTMLSlSecondaryNavItemElement;
    private invokeSelectedCallback;
    /** Set at true if selected */
    selected: boolean;
    /** Description below the label */
    description: string;
    /** Display an icon on the left */
    iconName: string;
    /** Display an icon with counter badge on right */
    badge: string;
    /**
     * Callback that will fire when the tabs is selected.
     */
    selectedCallback?: ((element: HTMLSlSecondaryNavItemElement) => void) | string;
    /**
     * Event that will fire when the tabs is selected.
     */
    itemSelectedEvent: EventEmitter<HTMLSlSecondaryNavItemElement>;
    selectedCallbackChanged(): void;
    constructor();
    private setInvokeSelectedCallback;
    private handleClick;
    render(): any;
}
