import type { Step, ThenStep } from "../Step"; export type GherkinTest = { given?: Step; when?: Step; then?: ThenStep; };