import { Plugin } from '@envelop/types'; import { envelopIsIntrospectionSymbol } from '../utils.js'; type LoggerPluginOptions = { logFn: typeof console.log; skipIntrospection?: boolean; }; type InternalPluginContext = { [envelopIsIntrospectionSymbol]?: true; }; export declare const useLogger: (rawOptions?: LoggerPluginOptions) => Plugin; export {};