export declare enum SupportedDocumentsTypes {
    DOC = "application/msword",
    DOCX = "docx",
    EXCEL = "application/vnd.ms-excel",
    PPT = "application/vnd.ms-powerpoint",
    PDF = "application/pdf",
    PNG = "image/png",
    JPG = "image/jpeg",
    SVG = "image/svg+xml",
    XML = "application/xml",
    TXT = "txt"
}
