import type { FC, HTMLAttributes, Ref } from 'react'; export type CodeSnippetCodeProps = HTMLAttributes & { ref?: Ref; }; export declare const CodeSnippetCode: FC;