declare function createArchive(ref: string): Promise; declare function githubRepository(): Promise; declare function readCommit(commit: string): Promise<{ branch: string | undefined; ref: string | undefined; message: string | undefined; }>; export { createArchive, githubRepository, readCommit };