/** * Represents Gherkin template: string with <> placeholders. * Example: 'Given is years old' */ export declare class GherkinTemplate { private template; constructor(template: string); fill(params: Record): string; extractParams(): string[]; } //# sourceMappingURL=GherkinTemplate.d.ts.map