import type { ReactElement } from 'react'; import { type BoxProps } from '../Box'; export type CodeSnippetProps = BoxProps & { children: string; buttonText?: string; buttonDisabled?: boolean; onClick?: () => void; }; declare const CodeSnippet: ({ children, onClick, buttonText, buttonDisabled, ...props }: CodeSnippetProps) => ReactElement; export default CodeSnippet; //# sourceMappingURL=CodeSnippet.d.ts.map