/** * Allows for the serenity-bdd command line interface output to be intercepted for testing purposes. * * @package */ export type Interceptor = (error: Error, parsed: { [key: string]: string | number; }, output: string) => void; /** * Invokes the serenity-bdd command line interface, responsible for downloading and running * the [Serenity BDD CLI](https://github.com/serenity-bdd/serenity-cli) * * @param argv * @param interceptor */ export declare function bootstrap(argv: string[], interceptor?: Interceptor): void; //# sourceMappingURL=bootstrap.d.ts.map