import { BaseSource } from '../source'; declare const ImageSource_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 BaseSource; export declare class ImageSource extends ImageSource_base { element: HTMLImageElement; init(): Promise; } export {};