import LibraryBaseElement from '../../internal/library-base-element.js'; import type { CSSResultGroup } from 'lit'; /** * @summary Dividers are used to visually separate or group elements. * @documentation /components/divider * @status stable * @since 1.5 * * @cssproperty --color - The color of the divider. * @cssproperty --width - The width of the divider. * @cssproperty --spacing - The spacing of the divider. */ export default class ODivider extends LibraryBaseElement { static styles: CSSResultGroup; /** Draws the divider in a vertical orientation. */ vertical: boolean; connectedCallback(): void; handleVerticalChange(): void; } declare global { interface HTMLElementTagNameMap { 'o-divider': ODivider; } }