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