import { GherkinCommentHandler } from "../common"; import { GherkinTableRow } from "../gherkinObject"; import { Comment } from "./comment"; import { TableCell } from "./tableCell"; import { UniqueObject } from "./uniqueObject"; /** * Model for TableRow */ export declare class TableRow extends UniqueObject { cells: TableCell[]; static parse(obj: GherkinTableRow, comments?: GherkinCommentHandler): TableRow; static parseAll(obj: GherkinTableRow[], comments?: GherkinCommentHandler): TableRow[]; /** Comment before the row */ comment: Comment; constructor(cells?: TableCell[]); clone(): TableRow; replace(key: RegExp | string, value: string): void; }