import React from 'react'; import { Configurator } from './configurators'; export interface PlayGroundLayoutProps { component: React.ReactNode; configurator: React.ReactNode; tools?: React.ReactNode; } export declare const PlayGroundLayout: (props: PlayGroundLayoutProps) => JSX.Element; export interface PlayGround { component: React.FC; configurator: Configurator; initialValues: T; } export declare const PlayGround: (props: PlayGround) => JSX.Element;