import { BaseHelper } from "./base.js"; export default class BunkrHelper extends BaseHelper { base64ToBytes(base64: string): Uint8Array; xorDecrypt(data: Uint8Array, key: string): string; decryptBase64XOR(encryptedBase64: string, key: string): string; getVideoData(videoId: string): Promise<{ url: string; } | undefined>; getVideoId(url: URL): Promise; } //# sourceMappingURL=bunkr.d.ts.map