import VideoServiceBase, { VideoServiceOptions } from './VideoServiceBase.js'; export interface PreziOptions extends VideoServiceOptions { width?: number; height?: number; } export default class PreziService extends VideoServiceBase { getDefaultOptions(): PreziOptions; extractVideoID(reference: string): string; getVideoUrl(videoID: string): string; } //# sourceMappingURL=PreziService.d.ts.map