import VideoServiceBase, { VideoServiceOptions } from './VideoServiceBase.js'; interface VineOptions extends VideoServiceOptions { width?: number; height?: number; /** * The type of vine embed (e.g., 'simple'). */ embed?: string; } declare class VineService extends VideoServiceBase { getDefaultOptions(): VineOptions; extractVideoID(reference: string): string; getVideoUrl(videoID: string): string; } export { VineService, VineOptions, }; //# sourceMappingURL=VineService.d.ts.map