import ffmpeg from 'fluent-ffmpeg'; import PCancelable from 'p-cancelable'; import { Readable } from 'stream'; import { MediaUdp } from '../client/voice/MediaUdp.js'; export declare function streamLivestreamVideo(input: string | Readable, mediaUdp: MediaUdp, includeAudio?: boolean, customHeaders?: map): PCancelable; export declare function getInputMetadata(input: string | Readable): Promise; export declare function inputHasAudio(metadata: ffmpeg.FfprobeData): boolean; export declare function inputHasVideo(metadata: ffmpeg.FfprobeData): boolean; type map = { [key: string]: string; }; export {};