import { Ref } from 'vue'; /** * Composable for block resizing logic * Handles resize operations with drag handles (right, bottom, corner) */ export function useResize(gridSettings: any, blocks: any): { resizingBlock: Ref; resizeDirection: Ref; startResize: (event: any, block: any, direction: any) => void; onResizeMove: (event: any) => void; onResizeEnd: (emitUpdate: any) => void; }; //# sourceMappingURL=useResize.d.ts.map