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