import { FC } from 'react'; import { SyntaxHighlighterProps } from '../SyntaxHighlighter'; import { ActionContainerProps } from '../ActionContainer'; export declare type SourceProps = ActionContainerProps & SyntaxHighlighterProps; /** * Syntax highliting source code component. Uses [prism](https://prismjs.com) for the actual source display. * */ export declare const Source: FC;