import type { PropertyValues } from 'lit'; import { LitElement } from 'lit'; /** * @element nve-divider * @description Divider is a component that separates and distinguishes sections of content or groups of menuitems. * @documentation https://nvidia.github.io/elements/docs/elements/divider/ * @since 0.12.0 * @entrypoint \@nvidia-elements/core/divider * @cssprop --color * @cssprop --padding * @cssprop --size * @cssprop --border-radius * @aria https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Roles/separator_role */ export declare class Divider extends LitElement { /** * Determines the orientation of the divider. */ orientation: 'vertical' | 'horizontal'; static styles: import("lit").CSSResult[]; static readonly metadata: { tag: string; version: string; }; /** @private */ _internals: ElementInternals; render(): import("lit").TemplateResult<1>; connectedCallback(): void; updated(props: PropertyValues): void; }