export type SelectionRange = string | undefined; export type PositionData = { path: Array; x: number; y: number; selectionRange?: SelectionRange; }; export type PathStep = { name: string; index: number; id: string; class: string; text?: string; }; export declare const pathBuilder: (event: MouseEvent) => PositionData; //# sourceMappingURL=path-builder.d.ts.map