export declare class TableCell<T> {
    key: string;
    value: T;
    constructor(key: string, value: T);
    static fromData<T>(data: T): TableCell<keyof T>[];
}
