import type { FC, HTMLAttributes, ReactNode } from 'react'; export type CodeContentProps = HTMLAttributes & { wrapLines: boolean; children: ReactNode; }; /** Renders the code container */ export declare const CodeContent: FC;