export interface FileResponse { '0': { fileID: string; fileName: string; customerID: string; expiryDate: string; fileStatus: number; }; fileName: string; } /** * Module configuration header required by `POST /emsapi/files`. * * Note: ManageEngine may support additional modules beyond this list. * Add new union members here as you adopt new APIs. */ export declare type FileUploadModule = 'MDM_PROFILES_IMAGES' | 'MDM_APP_MGMT' | 'MDM_CERTIFICATES' | 'MDM_CUSTOM_PROFILE' | 'MDM_CONTENT_MGMT' | 'MDM_OS_UPDATE_POLICY'; export declare type FileContentType = 'application/vnd.android.package-archive' | 'application/x-itunes-ipa' | 'application/zip' | 'application/x-ms-installer' | 'image/png' | string;