export interface ISource { url: string; type?: string; codec?: string; resolution?: string; } export declare class Source implements ISource { url: string; type?: string; codec?: string; resolution?: string; constructor({ url, type, codec, resolution }: ISource); getNormalizedResolution(): number | undefined; }