import { ISelection } from "./ISelection"; export declare const useSelectionUtils: () => { offsetShiftSelection: (selection: ISelection, mapping: "left" | "right" | "up" | "down") => ISelection; offsetSelection: (selection: ISelection, mapping: "left" | "right" | "up" | "down") => { start: { x: number; y: number; }; primary: { x: number; y: number; }; height: number; width: number; }; };