/** Match a commit subject to a roadmap ticket key for the given sprint. * Accepts an explicit `S{N}-{M}` mention OR a `(S{N})` umbrella reference * combined with a positional fallback to the next un-assigned ticket. * Returns null when the commit references no ticket from this sprint — * the caller decides whether to drop the commit (default) or keep it * with a synthetic key (--include-untracked). (#352) */ export declare function matchSprintTicket(subject: string, sprintNumber: number, allowedKeys: ReadonlyArray, positionalCursor: { next: number; }): string | null; export declare function autoCardCommand(args: string[]): Promise; //# sourceMappingURL=auto-card.d.ts.map