import { TableCell } from "../cell";
import { TablePlugin } from "../table-plugin";
export declare class Sum implements TablePlugin<number> {
    name: string;
    execute(cells: TableCell<unknown>[]): number;
}
