import type { Repository, User, Issue, Milestone } from "../types.js"; export declare class ForgejoMappers { static mapRepository(data: any): Repository; static mapUser(data: any): User; static mapIssue(data: any): Issue; static mapMilestone(data: any): Milestone; }