import { Channel } from "../interfaces/Channel"; import { Playlist } from "../interfaces/Playlist"; import { Video } from "../interfaces/Video"; import { WrappedHTTPClient } from "../WrappedHTTPClient"; import { Comment, CommentThread } from "../main"; declare function recursiveSearchForPair(searchKey: string, obj: any): any[]; declare function recursiveSearchForKey(searchKey: string, obj: any): any[]; declare function getNumberFromText(str: string): number; declare function replaceAll(search: string, value: string, source: string): string; declare function processRendererItems(arr: Array, httpclient: WrappedHTTPClient): (Video | Channel | Playlist | Comment | CommentThread | undefined)[]; declare function getVideoDefaultThumbnail(videoId: string): { url: string; height: number; width: number; }; declare function getIndexBefore(str: string, index: number, source: string): number; declare function getIndexAfter(str: string, index: number, source: string): number; declare const _default: { recursiveSearchForPair: typeof recursiveSearchForPair; recursiveSearchForKey: typeof recursiveSearchForKey; getNumberFromText: typeof getNumberFromText; processRendererItems: typeof processRendererItems; getVideoDefaultThumbnail: typeof getVideoDefaultThumbnail; replaceAll: typeof replaceAll; getIndexAfter: typeof getIndexAfter; getIndexBefore: typeof getIndexBefore; }; export default _default;