import { LitElement } from 'lit'; import '../footer/Footer.js'; /** * Drawer is used to display context-sensitive actions and information. * Drawer doesn’t block users from completing their task, like a modal would. * * @status new * @category structure * @slot header - Optional slot that holds a header for the drawer. * @slot - Default slot. * @slot footer - Optional slot that holds footer content for the drawer. * * @cssprop [--n-drawer-padding=var(--n-space-l)] - Controls the padding around the main area (the default slot), using our [spacing tokens](/tokens/#space). */ export default class Drawer extends LitElement { static styles: import("lit").CSSResult[]; private footerSlot; /** * Controls the padding of the drawer component. */ padding: 'm' | 'none'; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'nord-drawer': Drawer; } }