export interface ResizableOptions { axis?: 'x' | 'y' | 'xy'; direction?: 1 | -1; onResizeChange?: (offset: number) => void; } export declare function useResizable(options?: ResizableOptions): { offset: number; handlePointerDown: (event: React.PointerEvent) => void; style: { cursor: string; touchAction: string; }; };