import type { Hub } from '@sentry/core'; import type { EventProcessor } from '@sentry/types'; import type { LazyLoadedIntegration } from './lazy'; declare type GraphQLModule = { [method: string]: (...args: unknown[]) => unknown; }; /** Tracing integration for graphql package */ export declare class GraphQL implements LazyLoadedIntegration { /** * @inheritDoc */ static id: string; /** * @inheritDoc */ name: string; private _module?; /** @inheritdoc */ loadDependency(): GraphQLModule | undefined; /** * @inheritDoc */ setupOnce(_: (callback: EventProcessor) => void, getCurrentHub: () => Hub): void; } export {}; //# sourceMappingURL=graphql.d.ts.map