export interface Sprint { name: string; start: string; end: string; } export declare function parseSprints(text: string): Sprint[];