import { ComponentInterface } from '../../stencil-public-runtime';
export declare class MwcplNavbarItem implements ComponentInterface {
    /**
     * Selects the text, icon and background.
     */
    active: boolean;
    /**
     * The label of the navigation item.
     */
    label: string;
    /**
     * `href` of the navigation item.
     */
    href: string;
    /**
     * Pushes the element to the bottom of the navigation bar.
     */
    spacer: boolean;
    /**
     * Extends the navigation item.
     */
    open: boolean;
    /**
     * Makes the font larger and bolder.
     */
    header: boolean;
    /**
     * Hides the header icon.
     */
    iconless: boolean;
    render(): any;
}
