import type { FC } from 'react'; import './MediaLibrary.css'; interface MediaLibraryProps { canInsert?: boolean; isDialog?: boolean; } declare const MediaLibrary: FC; export default MediaLibrary;