import { ZodTypeDef } from "zod"; import { Options } from "./Options"; import { JsonSchema7Type } from "./parseDef"; export type Refs = { seen: Seen[]; currentPath: string[]; propertyPath: string[] | undefined; } & Options<"jsonSchema7" | "openApi3">; export type Seen = { def: ZodTypeDef; path: string[]; jsonSchema: JsonSchema7Type | undefined; }; export declare const getRefs: (options?: string | Partial>) => Refs;