import { ReactNode } from "react"; import { SyntaxHighlighterProps } from "react-syntax-highlighter"; export declare type CodeProps = { children: ReactNode; } & SyntaxHighlighterProps; export declare const Code: ({ children, ...props }: CodeProps) => import("@emotion/react/jsx-runtime").JSX.Element;