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