import { LitElement, type PropertyValues } from 'lit'; import { type NuiType } from '../../types/nui-type.js'; import { type NuiDividerViewState } from './logic.js'; import type { DividerAlign, DividerLayout, DividerType } from './types.js'; /** * @slot - Default slot content */ export declare class NuiDivider extends LitElement implements NuiDividerViewState { layout: DividerLayout | ''; align: DividerAlign | ''; type: DividerType | ''; unstyled: boolean; nuiType: NuiType; dividerClass: string; get lightDomHasContent(): boolean; protected createRenderRoot(): DocumentFragment | HTMLElement; protected updated(changed: PropertyValues): void; render(): import("lit-html").TemplateResult; } declare global { interface HTMLElementTagNameMap { 'nui-divider': NuiDivider; } } //# sourceMappingURL=nui-divider.d.ts.map