import type { OpConfig } from "./types.js"; export interface DiscoveredOp { config: OpConfig; filePath: string; } export interface OpDiscoveryResult { ops: Map; errors: string[]; } /** * Discover all Op definitions from *.op.ts files under the git root. */ export declare function discoverOps(opts?: { cwd?: string; }): Promise; //# sourceMappingURL=discover.d.ts.map