type RequestOptions = { payload: string; headers: Record; }; import type { YT_PlayerApiResponse, YTDL_InnertubeResponseInfo } from '../../types'; import type { UpperCaseClientTypes } from '../../types/_internal'; import type { ClientsParams } from './meta/Clients'; export default class Base { private static playError; static request(url: string, requestOptions: RequestOptions, params: ClientsParams, clientName: UpperCaseClientTypes | 'Next'): Promise>; } export {};