export declare enum FileTypeEnum {
    DOCX = "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
    JPG = "image/jpeg",
    PDF = "application/pdf",
    PNG = "image/png",
    RTF = "application/msword",
    TXT = "text/plain",
    XLSX = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
    XML = "text/xml",
    ZIP = "application/x-zip-compressed",
    DOC = "application/msword",
    XLS = "application/vnd.ms-excel"
}
