import { CustomElement } from "../../internal/custom-element.js"; type SeparatorAlignment = (typeof SeparatorAlignment)[keyof typeof SeparatorAlignment]; declare const SeparatorAlignment: { readonly START: "start"; readonly CENTER: "center"; readonly END: "end"; }; declare global { interface HTMLElementTagNameMap { 'odx-separator': OdxSeparator; } } /** * @summary A separator is a thin line that groups content in lists and layouts. * * @slot - The separator content */ declare class OdxSeparator extends CustomElement { static tagName: string; static styles: import("lit").CSSResult[]; /** * Defines the position of the separator content. */ alignment: SeparatorAlignment; /** * Indicates whether the separator should be rendered with a stronger visual weight. */ strong: boolean; /** * Indicates whether the separator is vertical. */ vertical: boolean; connectedCallback(): void; } export { OdxSeparator, SeparatorAlignment };