/** * Copyright (c) 2020-present, NDLA. * * This source code is licensed under the GPLv3 license found in the * LICENSE file in the root directory of this source tree. * */ import { ReactNode } from "react"; type Props = { code: string; highlightedCode: string; format: string; title?: string | null; actionButton?: ReactNode; showCopy?: boolean; }; export declare const Codeblock: ({ actionButton, code, highlightedCode, format, showCopy, title }: Props) => import("@emotion/react/jsx-runtime").JSX.Element; export default Codeblock;