export declare class Navigation { role: string; hostClass: boolean; /** * Controls the expanded (`true`) or collapsed (`false`) state when on a small screen. */ expanded: boolean; /** * Controls the hidden (`true`) or visible (`false`) state */ hidden: boolean; /** * Toggles the `Navigation` expanded state. */ toggle(): void; }