/** * Handlers: phase.list-plans, phase.list-artifacts — deterministic plan/artifact listing * for agents (replaces shell `ls` / `find` patterns). SDK-only; no gsd-tools.cjs mirror. */ import type { QueryHandler } from './utils.js'; /** Resolve `.planning/phases/` for a phase token, or null. */ export declare function resolvePhaseDir(phase: string, projectDir: string, workstream?: string): Promise; /** * phase.list-artifacts — list CONTEXT / SUMMARY / VERIFICATION / RESEARCH files in a phase directory. * * Args: `` `--type` `` */ export declare const phaseListArtifacts: QueryHandler; /** * phase.list-plans — list PLAN files in a phase with optional frontmatter key filter. * * Args: `` [`--with-schema` ``] */ export declare const phaseListPlans: QueryHandler; //# sourceMappingURL=phase-list-queries.d.ts.map