import { Ref } from '@textbus/core';
export interface DragRect {
    width: string;
    height: string;
}
export declare function useDragResize(ref: Ref<HTMLElement>, callback: (rect: DragRect) => void): void;
