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