/** Navigational tree item. */ export declare class RdsNavTreeItem { icon: string; label: string; url: string; children?: RdsNavTreeItem[] | undefined; constructor(icon: string, label: string, url: string, children?: RdsNavTreeItem[] | undefined); }