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