import type { TSESTree } from '@typescript-eslint/utils'; interface DetectData { schemaDecl: 'namespace' | 'named'; schemaType: string; methods: Array; node: TSESTree.CallExpression; } export type DetectResult = (DetectData & {}) | null; export declare function detectZodSchemaRootNode(node: TSESTree.Node, zodNamespaces: Set, zodNamedImports: Set): DetectResult; export {};