export type GitBranch = { name: string; isCurrent: boolean; lastCommitDate: string; ticket: string | null; connected: boolean; }; export type GitCommit = { hash: string; shortHash: string; message: string; author: string; date: string; dateRelative: string; }; export type GitHubPR = { number: number; title: string; state: 'open' | 'closed' | 'merged'; url: string; author: string; createdAt: string; }; export declare function listBranches(limit?: number): Promise; export declare function listRecentCommits(limit?: number): Promise; export declare function listPullRequests(limit?: number): Promise; //# sourceMappingURL=local.d.ts.map