import { InjectionToken } from '@angular/core';
import { IHasHostElement } from '../../../i-has-host-element';
export declare const CONNECTION_PATH: InjectionToken<IConnectionPath>;
export interface IConnectionPath extends IHasHostElement<SVGPathElement> {
    initialize(): void;
    setPath(path: string): void;
    select(): void;
    deselect(): void;
}
