/** * Calculate TK token * @param tld 'com' or 'cn' */ export declare function getTK(text: string, tld: string): Promise; /** * Fetch series of requests */ export declare function fetchScheduled(requests: (() => Promise)[], concurrent: boolean): Promise;