export declare const downloadMedia: (id: any) => Promise>; export declare const downloadFile: (id: any) => void; export declare const getCallMediaUrl: (id: any, { download }?: { download?: boolean; }) => string; export declare const getMediaUrl: (id: any, isThumb?: boolean) => string; export declare const MediaAPI: { getList: (params: any) => Promise<{ items: any; next: any; }>; get: ({ itemId }: { itemId: any; }) => Promise>; add: (params: any) => Promise>; delete: ({ id }: { id: any; }) => Promise; getLookup: (params: any) => Promise<{ items: any; next: any; }>; };