declare enum MIME {
    /**
     * application/pdf
     */
    ApplicationPdf = "application/pdf",
    /**
     * image/png
     */
    ImagePng = "image/png",
    /**
     * image/jpeg
     */
    ImageJpeg = "image/jpeg",
    /**
     * text/csv
     */
    TextCsv = "text/csv",
    /**
     * application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
     */
    ApplicationVndOpenxmlformatsOfficedocumentSpreadsheetmlSheet = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
    /**
     * application/vnd.oasis.opendocument.spreadsheet
     */
    ApplicationVndOasisOpendocumentSpreadsheet = "application/vnd.oasis.opendocument.spreadsheet",
    /**
     * application/xml
     */
    ApplicationXml = "application/xml",
    /**
     * text/xml
     */
    TextXml = "text/xml"
}
declare function description(value: MIME): string;

export { MIME, description };
