import { InAppMessagePresentationContext } from "./presentation/InAppMessagePresentationContext"; import { InAppMessagePresentRequest } from "./InAppMessagePresentRequest"; export declare class InAppMessagePresentResponse { readonly dispatchId: String; readonly context: InAppMessagePresentationContext; constructor(dispatchId: String, context: InAppMessagePresentationContext); /** * @override */ toString(): string; static of(request: InAppMessagePresentRequest, context: InAppMessagePresentationContext): InAppMessagePresentResponse; }