import * as React from "react"; export interface CustomCodeProps { code: string; replaceNodes?: boolean; } declare function CustomCode(props: CustomCodeProps): React.JSX.Element; export default CustomCode;