import type { IdGenerator } from '@cucumber/messages'; import type { ILogger } from '../environment'; import type { SupportCodeLibrary } from '../support_code_library_builder/types'; export declare function getSupportCodeLibrary({ logger, cwd, newId, requireModules, requirePaths, importPaths, loaders, }: { logger: ILogger; cwd: string; newId: IdGenerator.NewId; requireModules: string[]; requirePaths: string[]; importPaths: string[]; loaders: string[]; }): Promise;