import * as React from 'react'; import { IModal } from '@epam/uui-core'; import { Editor } from "slate-react"; interface AddVideoModalProps extends IModal { editor: Editor; } export type VideoService = 'youtube' | 'vimeo' | 'videoportal' | 'vine' | 'videopress'; export declare function getVideoInfo(url: string): { id?: string; service?: VideoService; }; export declare function getVideoSrc(src: string): string; export declare class AddVideoModal extends React.Component { state: any; createVideoBlock: () => void; render(): JSX.Element; } export {}; //# sourceMappingURL=AddVideoModal.d.ts.map