export declare class Attachment {
    name: string;
    attachmentData: any;
    constructor(name: string, attachmentData: any);
}
