import { JiraSprint } from "./types"; export declare type SprintNameArg = string | undefined | "__current" | "__next"; /** * Retrieves the sprint from a list of sprint based on the provided sprint name * * When no sprintName is provided * - the next upcoming sprint will be selected * - the current sprint will be selected if no upcomint sprint is planned * * The sprint name can also be defined by special variables: * - %current%: the currently running sprint * - %next% the next upcoming sprint */ export declare function getSprint(sprintName: SprintNameArg, sprints: JiraSprint[]): JiraSprint | undefined; //# sourceMappingURL=sprint.d.ts.map