/** * Discover hooks from workspace, managed (~/.milady/hooks/), and bundled dirs. * Later sources win on name conflicts. */ import type { HookEntry } from "./types"; export interface DiscoveryOptions { workspacePath?: string; bundledDir?: string; extraDirs?: string[]; } /** Precedence: extra (lowest) -> bundled -> managed -> workspace (highest). */ export declare function discoverHooks(options?: DiscoveryOptions): Promise; //# sourceMappingURL=discovery.d.ts.map