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