export declare enum GraphQLConfigKeys { debug = "debug", playground_enable = "playground_enable" } export declare class GraphQLConfigObject { private static key; private static prefix; debug: boolean; playground_enable: boolean; constructor(o: Partial); static load: () => GraphQLConfigObject; Z: any; }