export declare class MessageToPost {
    private readonly subject;
    private readonly from;
    private readonly text;
    constructor(subject: string, from: string, text: string);
}
