import { LuxenElement } from '../../shared/luxen-element.js';
export type DividerOrientation = 'horizontal' | 'vertical';
/**
* @summary Dividers visually separate or group elements.
*
* @example
*
* @cssproperty --color - The color of the divider line.
* @cssproperty --thickness - The thickness of the divider line.
* @cssproperty --spacing - The spacing between the divider and its neighboring elements.
*
* @customElement l-divider
*/
export declare class Divider extends LuxenElement {
createRenderRoot(): this;
/** The divider's orientation. */
orientation: DividerOrientation;
/** Optional text label displayed over the divider line. */
label?: string;
connectedCallback(): void;
updated(changed: Map): void;
}
//# sourceMappingURL=divider.d.ts.map