type Params = { user: string; repo: string; branch: string; docsPath: string; outputPath: string; }; declare function fetchFilePathsFromGitHub({ user, repo, branch, docsPath, outputPath }: Params): Promise; export { fetchFilePathsFromGitHub };