import { ISize, ITransformModel } from '@foblex/2d';
import { BrowserService } from '@foblex/platform';
export declare class LineService {
    private hostElement;
    private fHorizontalLine;
    private fVerticalLine;
    constructor(fBrowser: BrowserService, hostElement: HTMLElement);
    drawVerticalLine(x: number, size: ISize, transform: ITransformModel): void;
    drawHorizontalLine(y: number, size: ISize, transform: ITransformModel): void;
    hideVerticalLine(): void;
    hideHorizontalLine(): void;
}
