import { PluginFunction } from '@graphql-codegen/plugin-helpers'; /** * Configuration options for the GraphQL Codegen Zod plugin */ declare namespace withZodPlugin { interface Config { /** Custom scalar type mappings for GraphQL to Zod conversion */ scalars?: Record; /** Custom import statements to include in the generated file */ imports?: string[]; } } /** * GraphQL Codegen plugin that generates Zod schemas from GraphQL schema and documents. * Converts GraphQL types, fragments, and operations into TypeScript-compatible Zod schemas. */ declare const withZodPlugin: PluginFunction; declare const plugin: PluginFunction; declare const _default: { plugin: PluginFunction; }; export { _default as default, plugin, withZodPlugin };