import { LitElement } from 'lit'; import { LineMedium, LineType } from '../index'; export declare enum CornerLineDirection { topRight = "top-right", topLeft = "top-left", bottomRight = "bottom-right", bottomLeft = "bottom-left" } export type CornerLineDirectionType = 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left'; export declare class ObcCornerLine extends LitElement { medium: LineMedium; direction: CornerLineDirectionType; lineType: LineType; render(): import('lit-html').TemplateResult<1>; static styles: import('lit').CSSResult; } declare global { interface HTMLElementTagNameMap { 'obc-corner-line': ObcCornerLine; } } //# sourceMappingURL=corner-line.d.ts.map