import { ILine } from '@foblex/2d';
import { InjectionToken } from '@angular/core';
import { IHasHostElement } from '../../../i-has-host-element';
export declare const CONNECTION_TEXT: InjectionToken<IConnectionText>;
export interface IConnectionText extends IHasHostElement {
    redraw(line: ILine): void;
}
