1 | import { ConsumerDeserializer, IncomingEvent, IncomingRequest } from '../interfaces';
|
2 | /**
|
3 | * @publicApi
|
4 | */
|
5 | export declare class IncomingRequestDeserializer implements ConsumerDeserializer {
|
6 | deserialize(value: any, options?: Record<string, any>): IncomingRequest | IncomingEvent;
|
7 | isExternal(value: any): boolean;
|
8 | mapToSchema(value: any, options?: Record<string, any>): IncomingRequest | IncomingEvent;
|
9 | }
|