import { ReactNode } from 'react'; import { SecurityContextProps, SecurityContextProviderProps } from '../../components/SecurityContext/SecurityContextProvider'; import { AppContextProps, PlaygroundContext } from '../../components/AppContext'; type PlaygroundWrapperProps = { children: ReactNode; identifier?: string; playgroundContext?: Partial; } & Pick & Pick & Pick; export declare function PlaygroundWrapper({ token, apiUrl, identifier, playgroundContext, children, tokenUpdater, onTokenPayloadChange, }: PlaygroundWrapperProps): import("react/jsx-runtime").JSX.Element; export {};