export type ResizableParams = { resizable?: boolean; initialRightColWidth?: number; minRightColWidth?: number; maxRightColWidth?: number; }; export declare const useResizableRightColumn: ({ resizable, initialRightColWidth, minRightColWidth, maxRightColWidth, }: ResizableParams) => { readonly rightColWidth: number; readonly onMouseDownResizer: (e: React.MouseEvent) => void; };