import { HttpService } from '@nestjs/axios';
import { ArrayBufferUpload } from '../media-adapter';
export declare class ImageFetcherService {
    private httpService;
    constructor(httpService: HttpService);
    fetch(url: string, filename?: string): Promise<ArrayBufferUpload>;
}
