import { InjectionToken } from '@rxdi/core'; import { RenderPageOptions } from 'graphql-playground-html'; export interface PlaygroundConfig extends RenderPageOptions { path?: string; endpoint?: string; graphiqlPlayground?: boolean; } export declare const PLAYGROUND_CONFIG: InjectionToken<{}>;