import { GitFileStore } from "../../git-file-store"; import { Octokit } from "@octokit/rest"; export declare class GitHubFileStore extends GitFileStore { path: string; dir: string; owner: string; repo: string; token?: string; requester: Octokit; constructor(path: string, opts?: { dir?: string; token?: string; }); cd(subdir: string): GitHubFileStore; private getContent; private getTree; keys(): Promise>; get(path: string): Promise; }