/**
 * Model used to render items in the menu component.
 *
 * @property {string} label the text used for the DOM
 * @property {string} rtrLink the corresponding routerLink
 */
export declare class MenuItemModel {
    label: string;
    rtrLink: string;
}
