/** * Copyright (c) 2019-present, NDLA. * * This source code is licensed under the GPLv3 license found in the * LICENSE file in the root directory of this source tree. * */ type Props = { onSave: Function; onAbort: Function; highlight: (code: string, language: string) => string; content: { code: string; title: string; format: string; } | null; }; declare const CodeBlockEditor: ({ onSave, onAbort, highlight, content }: Props) => import("@emotion/react/jsx-runtime").JSX.Element; export default CodeBlockEditor;