import { DiscoveredSchema } from "./core/types.js"; //#region src/discovery.d.ts interface DiscoverOptions { /** Auto-detect all exported Zod schemas without requiring compile() wrappers. */ autoDiscover?: boolean | undefined; } /** * Discover schemas in a source file by importing it and scanning exports. * * - Default mode: finds compile() calls via CompiledSchema marker. * - autoDiscover mode: also finds plain Zod schema exports via _zod.def detection. * compile() schemas take priority (isCompiledSchema checked first). */ declare function discoverSchemas(filePath: string, options?: DiscoverOptions): Promise; //#endregion export { DiscoverOptions, discoverSchemas }; //# sourceMappingURL=discovery.d.ts.map