import { FileWithPath } from '@mantine/dropzone'; import { LexicalCommand, NodeKey } from 'lexical'; import { VideoPlatform } from './types'; export { parseVideoURL } from '@layers-app/editor-core'; export declare const INSERT_VIDEO_COMMAND: LexicalCommand; export interface UploadVideoCommandPayload { files: FileWithPath[]; targetNodeKey: NodeKey; } export declare const UPLOAD_VIDEO_COMMAND: LexicalCommand; export declare function getVideoIframeUrl(platform: VideoPlatform, id: string): string; export declare function getShakaVideoPlayerProps(platform: VideoPlatform, id: string): { src: string; } | { attachmentId: string; }; export declare function isValidMediaUrl(url: string): boolean; //# sourceMappingURL=node-utils.d.ts.map