export interface TableSizePickerPopoverProps { x: number; y: number; onInsert: (rows: number, columns: number) => void; onCancel: () => void; } /** * "Insert table" size picker - CKEditor's own pattern: hover an N×M grid to * preview the size, click a cell to insert immediately (one decisive click, * no separate Apply/Confirm step, since a grid cell click is already a * single deliberate choice - the same reasoning ColorPickerPopover's * recent-swatch buttons and the removed preset grid used). A numeric * fallback below covers sizes past the grid's cap without capping what the * tool can actually do. */ export declare function TableSizePickerPopover({ x, y, onInsert, onCancel }: TableSizePickerPopoverProps): import("react/jsx-runtime").JSX.Element;