/// <reference types="react" />
import { PureComponent } from 'react';
export interface Props {
    language: string;
}
export default class CodeBlock extends PureComponent<Props, {}> {
    render(): JSX.Element;
}
