import { ZodTypeDef } from "zod/v3"; import { Options, Targets } from "./Options.js"; import { JsonSchema7Type } from "./parseTypes.js"; export type Refs = { seen: Map; currentPath: string[]; propertyPath: string[] | undefined; flags: { hasReferencedOpenAiAnyType: boolean; }; } & Options; export type Seen = { def: ZodTypeDef; path: string[]; jsonSchema: JsonSchema7Type | undefined; }; export declare const getRefs: (options?: string | Partial>) => Refs;