import { IFetcher } from '../interface'; export declare class TextFetcher implements IFetcher { readonly apiKey: string; readonly cookie: string | undefined; constructor(apiKey: string, cookie?: string); doFetch(query: string): Promise; }