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