UNPKG

strapi-plugin-oembed

Version:
10 lines (9 loc) 368 B
import { ReactNode } from 'react'; import { Oembed } from '@/shared/types/oembed'; import { InputCallback } from '../Input'; export type ImportModalProps = { onImport: InputCallback; entry: Oembed | null; children: ReactNode; }; export default function ImportModal({ onImport, entry, children }: ImportModalProps): import("react/jsx-runtime").JSX.Element;