import { AudioSource } from '../audio'; import { InputVideoTrack } from 'mediabunny'; import { Time } from '../../types'; declare const VideoSource_base: { new (...args: any[]): { height: import('../..').int; width: import('../..').int; get aspectRatio(): number; id: string; mimeType: string; input: import('../..').MediaInput; name: string; createdAt: string; init(): Promise; arrayBuffer(): Promise; toJSON(): string; fromJSON(obj: K extends string ? never : K): /*elided*/ any; }; } & typeof AudioSource; export declare class VideoSource extends VideoSource_base { videoTrack: InputVideoTrack; fps: number; bitrate: number; init(): Promise; thumbnailsInRange(options: { start: Time; end: Time; count: number; width: number; height: number; }): AsyncGenerator; } export {};