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