import type { BaseContext, ApolloServerPlugin } from './externalTypes/index.js'; export interface InternalApolloServerPlugin extends ApolloServerPlugin { __internal_plugin_id__: InternalPluginId; __is_disabled_plugin__: boolean; } export declare function internalPlugin(p: InternalApolloServerPlugin): ApolloServerPlugin; export type InternalPluginId = 'CacheControl' | 'LandingPageDisabled' | 'SchemaReporting' | 'InlineTrace' | 'UsageReporting'; export declare function pluginIsInternal(plugin: ApolloServerPlugin): plugin is InternalApolloServerPlugin; //# sourceMappingURL=internalPlugin.d.ts.map