declare type PlaygroundProps = { /** * The jsx to edit and render, as string. */ code: string; /** * Specifies globals to use inside the live editor. */ scope?: object; /** * Allows to render multiple components. */ noInline?: boolean; /** * ClassName(s) to pass to inner blocks */ innerClassName?: string; }; /** * Renders your code inside a live-editable playground and directly shows the output of the code used. */ export declare const Playground: { ({ code, scope, noInline, innerClassName, ...props }: PlaygroundProps): JSX.Element; defaultProps: { noInline: boolean; }; }; export {};