import { type Readable } from 'node:stream'; import type { IGherkinOptions } from '@cucumber/gherkin'; import type * as messages from '@cucumber/messages'; export interface IGherkinStreamOptions extends IGherkinOptions { relativeTo?: string; } declare function fromPaths(paths: readonly string[], options: IGherkinStreamOptions): Readable; declare function fromSources(envelopes: readonly messages.Envelope[], options: IGherkinOptions): Readable; declare const _default: { fromPaths: typeof fromPaths; fromSources: typeof fromSources; }; export default _default;