import * as React from 'react'; import { IStyleFunctionOrObject, ITheme, IStyle } from 'office-ui-fabric-react'; export interface ICodeSnippetProps { className?: string; language?: string; styles?: IStyleFunctionOrObject; theme?: ITheme; } export declare type ICodeSnippetStyleProps = Pick; export interface ICodeSnippetStyles { root: IStyle; } export declare const CodeSnippet: React.FunctionComponent;