import { RotatedRectangleF } from "@aurigma/design-atoms-model/Math/RotatedRectangleF";
import { ISnapLineData } from "./ISnapLineData";
export interface ISnapLinesHandler {
    currentItemRectangle: RotatedRectangleF;
    getVerticalLineData(): ISnapLineData;
    getHorizontalLineData(): ISnapLineData;
}
