import { FC } from 'react';
interface SourceCodeProps {
    children: string;
    lang: string;
}
declare const SourceCode: FC<SourceCodeProps>;
export default SourceCode;
