import type { Http } from '../../../../util/http';
import type { CustomDatasourceFetcher } from './types';
export declare class PlainFetcher implements CustomDatasourceFetcher {
    fetch(http: Http, registryURL: string): Promise<unknown>;
    readFile(registryURL: string): Promise<unknown>;
}
