import type { ReactNode } from 'react'; declare type Props = { children?: ReactNode; }; declare const CodeComponent: ({ children }: Props) => JSX.Element; export default CodeComponent; //# sourceMappingURL=Code.d.ts.map