import { Issue } from "./issue.js"; import { Sprint } from "./sprint.js"; import { Module, BugzillaTracker } from "./tracker.js"; export interface TodoFile { sprints: Sprint[]; issues: Issue[]; modules?: Module[]; bugzilla?: BugzillaTracker; } export declare function parseMime(mimeText: string): Promise; export declare function preprocessTODO(raw: string): string; export declare function parseTodoFile(path?: string): Promise; export declare function writeTodoFile(todo: TodoFile, path?: string): void;