export declare class MobileNavigation {
    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;
    constructor();
    toggle(): void;
}
