import { ISnapElementConfiguration } from "./ISnapElementConfiguration";
import { IAnchor } from "./IAnchor";
export interface ISnapLineData {
    anchor: IAnchor;
    config: ISnapElementConfiguration;
}
