import type { GraphQLAfterQueryPlugin } from "./types.js"; import type { Context } from "@webiny/api/types.js"; import { ContextPlugin } from "@webiny/api"; interface Log { method: string; args: any; } interface DebugContext extends Context { debug: { logs?: Log[]; }; } declare const _default: () => (ContextPlugin | GraphQLAfterQueryPlugin)[]; export default _default;