import Jimp from 'jimp'; export interface resizeImageProps { size: { width: number; height: number; }; source_url: string; destination_path: string; } export declare function resizeImage({ source_url, size: { width, height }, destination_path, }: resizeImageProps): Promise;