import * as React from 'react';
export interface SourceCodeProps {
source: string;
lang: string;
}
export declare const SourceCode: (props: SourceCodeProps) => React.JSX.Element;
export declare const SourceCodeWithCopy: (props: SourceCodeProps) => React.JSX.Element;