import { TableCell } from "./cell";
import '../array/linq';
import { TablePlugin } from "./table-plugin";
import { Type } from "../types/type";
export declare class TableQueryResults {
    cells: TableCell<unknown>[];
    constructor(cells: TableCell<unknown>[]);
    exec<T>(plugin: Type<TablePlugin<T>>): T;
}
