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