import { Router } from 'express'; import { EmailEventHandler } from './handler/event-handler'; import { EmailPluginDevModeOptions, EventWithContext } from './types'; /** * An email inbox application that serves the contents of the dev mode `outputPath` directory. */ export declare class DevMailbox { private handleMockEventFn; serve(options: EmailPluginDevModeOptions): Router; handleMockEvent(handler: (handler: EmailEventHandler, event: EventWithContext) => void): void; private getEmailList; private getEmail; private createRequestContext; }