export interface AmendmentEntry { at: string; reason: string; pr?: string; files?: string[]; } /** append an amendments entry to specs/story-.yaml (creates the list). */ export declare function appendAmendment(repoRoot: string, storyId: string, entry: AmendmentEntry): string; /** resolve which story owns a test file, via the testgen manifests. */ export declare function owningStory(repoRoot: string, testPath: string): string | null; export declare function amend(argv: string[]): Promise; //# sourceMappingURL=amend.d.ts.map