import { GherkinCommentHandler } from "../common"; import { GherkinDataTable } from "../gherkinObject"; import { TableRow } from "./tableRow"; import { UniqueObject } from "./uniqueObject"; /** * Model for DataTable */ export declare class DataTable extends UniqueObject { rows: TableRow[]; static parse(obj: GherkinDataTable, comments?: GherkinCommentHandler): DataTable; constructor(rows?: TableRow[]); clone(): DataTable; replace(key: RegExp | string, value: string): void; }