import React from 'react'; import cx from 'classnames'; import { DropdownItem } from '../Dropdown'; import styles from './CodeBlock.module.scss'; export interface Props { children?: React.ReactNode; className?: Parameters[0]; code: string | null; isCopying?: boolean; wrap?: boolean; showLineStart?: number; onClick?: () => void; title?: string; dropdown?: { accessibilityLabel: string; isOpen: boolean; onChange: (v: DropdownItem) => void; onClick: () => void; onEscape?: () => void; options: Array; text: string; value: DropdownItem; }; referenceLink?: { href: string; accessibilityLabel: string; }; } export declare const CodeBlock: React.FC; export default CodeBlock; export { styles }; //# sourceMappingURL=index.d.ts.map