import { LitElement } from 'lit'; import { LineMedium, LineType } from '..'; export declare enum ThreeWayLineDirection { top = "top", right = "right", bottom = "bottom", left = "left" } export declare class ObcThreeWayLine extends LitElement { medium: LineMedium; direction: ThreeWayLineDirection; lineType: LineType; render(): import('lit-html').TemplateResult<1>; static styles: import('lit').CSSResult; } declare global { interface HTMLElementTagNameMap { 'obc-three-way-line': ObcThreeWayLine; } } //# sourceMappingURL=three-way-line.d.ts.map