@_sh/strapi-plugin-ckeditor
Version:
Integrates CKEditor 5 into your Strapi project as a fully customizable custom field. (Community Edition)
10 lines (9 loc) • 397 B
TypeScript
import React from 'react';
type MediaLibProps = {
isOpen: boolean;
toggle: () => void;
handleChangeAssets: (newElems: string) => void;
};
declare function MediaLib({ isOpen, toggle, handleChangeAssets }: MediaLibProps): import("react/jsx-runtime").JSX.Element | null;
declare const MemoizedMediaLib: React.MemoExoticComponent<typeof MediaLib>;
export { MemoizedMediaLib as MediaLib };