import { CellValue } from './CellValue';

export interface Cell {
    values: CellValue[];
}
