import { ReactElement } from 'react'; interface Props { children: string; prettify?: boolean; } export declare function Code({ children, prettify }: Props): ReactElement; export {};