import { ITableRow } from './tableRow';
/**
 * Represents a set of arguments provided to the Scenario Step call
 */
export interface IStepArgument {
    rows: ITableRow[];
}
