import type { DiscoveryFs, PlanEntry, PlanKind } from "./types.js"; export declare function isPlanMetaDocument(filePath: string): boolean; export declare function discoverAllPlans(options: { cwd: string; homeDir: string; fs?: DiscoveryFs; configPath: string; projectConfigPath: string; kind?: PlanKind; archived?: boolean; variables?: Record; }): Promise;