import * as React from "react"; export interface CodeSnippetProps { children?: string; /** * This is what will end up on the user's clipboard */ textToCopy?: string; /** * Function to execute after text has been copied */ onCopy?: () => void; /** * */ copyTooltipContent?: React.ReactNode; } declare const CodeSnippet: ({ children, copyTooltipContent, textToCopy, onCopy }: CodeSnippetProps) => React.JSX.Element; export default CodeSnippet;