import { ComponentType, SFC } from 'react'; export interface PlaygroundProps { className?: string; style?: any; wrapper?: ComponentType; children: any; __scope: Record; __position: number; __code: string; useScoping?: boolean; language?: string; } export declare const Playground: SFC;