import { BpTypeElement } from '@blueprintui/components/internals'; import { LitElement, PropertyValueMap } from 'lit'; /** * ```typescript * import '@blueprintui/components/include/divider.js'; * ``` * * ```html * * ``` * * @summary The divider component is used to visually separate content into distinct sections. It can be used to separate a group of related items or to indicate a change in content or context. * @element bp-divider * @since 1.0.0 * @cssprop --background * @cssprop --size */ export declare class BpDivider extends LitElement implements Pick { /** Controls the layout direction of the divider, either horizontal or vertical */ accessor orientation: 'horizontal' | 'vertical'; _internals: ElementInternals; render(): import("lit").TemplateResult<1>; static get styles(): CSSStyleSheet[]; constructor(); protected updated(props: PropertyValueMap): void; }