import { DomainEvent } from '@serenity-js/core/lib/domain'; import { Stage, StageCrewMember } from '@serenity-js/core/lib/stage'; /** * Provides generic stand-in actors for the purpose of taking screenshots. * This is useful when integrating Serenity/JS with a legacy code base that does not (yet) use the Screenplay Pattern, * nor invoke `serenity.callToStageFor(customActors)`. */ export declare class StandIns implements StageCrewMember { private static Events_of_Interest; private stage; assignTo(stage: Stage): void; notifyOf(event: DomainEvent): void; private provideStandInActorsIfNeeded(); private shineSpotlightOn(name); }