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