import { LitElement } from 'lit'; import '../button/Button.js'; import '../visually-hidden/VisuallyHidden.js'; declare const NavToggle_base: (new (...args: any[]) => import("../common/mixins/FocusableMixin.js").FocusableMixinInterface) & typeof LitElement; /** * Nav toggle is meant for hiding and showing the primary navigation. * This component is used internally in the Layout component, but can also be * used separate to further customize the behavior. * * @status ready * @category action * * @localization label - Accessible label for the nav toggle button. */ export default class NavToggle extends NavToggle_base { static styles: import("lit").CSSResult[]; private direction; private localization; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'nord-nav-toggle': NavToggle; } } export {};