import * as React from 'react'; import { IModal } from '@epam/uui-core'; import { PlateEditor } from '@udecode/plate-common'; interface AddVideoModalProps extends IModal { editor: PlateEditor; } export type VideoService = 'youtube' | 'vimeo' | 'videoportal' | 'vine' | 'videopress'; export declare function getVideoInfo(url: string): { id: string; service: string; } | { id?: undefined; service?: undefined; }; export declare function getVideoSrc(src: string): string; export declare function AddVideoModal({ editor, success, abort, ...props }: AddVideoModalProps): React.JSX.Element; export {}; //# sourceMappingURL=AddVideoModal.d.ts.map