import { FC } from 'react'; export type ResizeHandleSide = 'left' | 'right' | 'bottom'; export interface ResizeHandleProps { side: ResizeHandleSide; onPointerDown: (e: React.PointerEvent) => void; } /** * Resize handle component for drag-to-resize functionality. * Place on left/right/bottom edges of resizable containers. */ export declare const ResizeHandle: FC;