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