import { Asset, MediaInput } from '../../types'; import { BaseSource } from './base'; type SourceOptions = { name?: string; mimeType?: string; }; export declare class Source { static from(input: MediaInput, options?: SourceOptions): Promise; static fromAsset(asset: Asset): Promise; } export {};