import React from 'react'; import { NormalTypes } from '../utils/prop-types'; /** END OF STYLE */ export interface SnippetProps { text?: string; w?: any; type?: NormalTypes; ghost?: boolean; } declare const Snippet: React.FC; export default Snippet;