declare class Attachment {
    __classname__: string;
    Rendition: string | null;
    Type: string | null;
    Content: string | null;
    FilePath: string | null;
    FileUrl: string | null;
    EditionId: string | null;
    ContentSourceFileLink: string | null;
    ContentSourceProxyLink: string | null;
    constructor(params: AttachmentNamedParameters);
}
interface AttachmentNamedParameters {
    Rendition?: string;
    Type?: string;
    Content?: string;
    FilePath?: string;
    FileUrl?: string;
    EditionId?: string;
    ContentSourceFileLink?: string;
    ContentSourceProxyLink?: string;
}

export { Attachment, type AttachmentNamedParameters };
