import { type FC, type HTMLAttributes, type Ref } from 'react'; export type CodeSnippetContentProps = HTMLAttributes & { ref?: Ref; /** * Use native browser scroll instead of ScrollArea. * @temporary This is a temporary prop while ScrollArea is unstable. * @default false */ nativeScroll?: boolean; }; export declare const CodeSnippetContent: FC;