import { type Signal } from "@angular/core"; interface DragResizeOptions { getDialogEl: () => HTMLElement | null; minWidthPx: Signal; minHeightPx: Signal; onEnd: () => void; } export declare function injectDragResize(opt: DragResizeOptions): { startDrag: (event: MouseEvent) => void; startResize: (event: MouseEvent, dir: string) => void; }; export {}; //# sourceMappingURL=injectDragResize.d.ts.map