import type { SchemaManagerHost } from './types'; import { RequestSetup } from './request-introspection-query'; import { HttpSchemaManager } from './http-schema-manager'; interface ScriptedHttpSchemaManagerOptions { fromScript: string; } export declare class ScriptedHttpSchemaManager extends HttpSchemaManager { private _scriptFileName; constructor(_host: SchemaManagerHost, options: ScriptedHttpSchemaManagerOptions); private _getScriptFilePath; private _requireScript; private _configurationScriptChanged; protected _fetchErrorOcurred(): void; protected _getOptions(): Promise; } export {};