import { BaseObject } from './baseObject';
import { Value } from './value';
export interface Row extends BaseObject {
    values?: Value[];
}
