import { TablePopoverContextValue } from '../context'; export declare const usePopoverResizeHandler: (tablePopoverValue: TablePopoverContextValue) => { handleColumnResize: (columnId: string, newWidth: number) => void; saveInitialColumnWidth: (columnId: string, initialWidth: number) => void; clearColumnWidths: () => void; };