import { IFetcher } from '../interface';
export declare class TextFetcher implements IFetcher<string, string> {
    apiKey: string;
    constructor(apiKey: string);
    doFetch(query: string): Promise<string>;
    internalFetch(query: string): Promise<any>;
    delay(waitFor: number): Promise<any>;
}
