import { Request, ResponseToolkit, Server } from '@hapi/hapi'; import { PlaygroundConfig } from '../palyground.config'; export declare class GraphiQLPlaygroundPlugin { private server; private config; constructor(server: Server, config: PlaygroundConfig); register(): Promise; handler(request: Request, h: ResponseToolkit): Promise; }