import { Actions } from './TableCellContextMenu';
interface TablePluginProps {
    isActive: boolean;
}
export interface TableMutation {
    mutateTable: (type: Actions) => void;
}
export declare const TablePlugin: import('react').ForwardRefExoticComponent<TablePluginProps & import('react').RefAttributes<unknown>>;
export {};
