import { Request } from '../Request';
import { MessageSummaryResponse } from './MessageSummaryResponse';
import { IRestResponse } from 'typed-rest-client/RestClient';
export declare class GetMessageSummaryRequest implements Request<MessageSummaryResponse> {
    private readonly domain;
    private readonly messageId;
    constructor(domain: string, messageId: string);
    execute(apiToken: string): Promise<IRestResponse<MessageSummaryResponse>>;
}
