import type { TodoFile } from "./file.js"; import type { Issue } from "./issue.js"; import type { Sprint } from "./sprint.js"; import type { Module, BugzillaTracker } from "./tracker.js"; export declare function wordWrap(text: string, maxCol: number, firstPrefixLen: number, contIndentLen: number): string[]; export declare function serializeRelationships(rels: Issue["relationships"]): string; export declare function serializeSprints(sprints: Sprint[]): string; export declare function serializeIssue(issue: Issue): string; export declare function serializeModules(modules: Module[]): string; export declare function serializeBugzillaTracker(tracker: BugzillaTracker): string; export declare function serializeTodoFile(todo: TodoFile): string;