import Payment from './Payment';
import { IWithResult } from './IWithResult';
import MissiveBody from './MissiveBody';
declare class Missive implements IWithResult {
    private pPayment;
    private _body;
    get body(): MissiveBody;
    constructor(payment: Payment);
    result(): string;
}
export default Missive;
