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