import { LitElement } from 'lit'; /** * Divider components are used to separate and distinguish sections of * content or groups of menu items. Visually, they look like * horizontal or vertical lines. * * @status ready * @category structure * * @cssprop [--n-divider-color=var(--n-color-border)] - Controls the color of the divider, using our [color tokens](/tokens/#color). * @cssprop [--n-divider-size=1px] - Controls the size, or thickness, of the divider. */ export default class Divider extends LitElement { static styles: import("lit").CSSResult[]; /** * The direction of the divider. */ direction: 'vertical' | 'horizontal'; firstUpdated(): void; private handleDirectionChange; } declare global { interface HTMLElementTagNameMap { 'nord-divider': Divider; } }