import React from 'react'; import { PageProps } from '../../page-container'; import { ConfiguratorMap } from '../configurators'; interface PagePlayGroundProps { initialValues: T; page: React.FC>; onValuesChange?: (values: any) => void; configuratorMap?: ConfiguratorMap; } export declare const PagePlayground: (props: PagePlayGroundProps) => JSX.Element; export {};