import { GitFileStore } from "../../git-file-store"; import { AxiosInstance } from "axios"; export declare class GitLabFileStore extends GitFileStore { path: string; dir: string; host?: string; token?: string; requester: AxiosInstance; constructor(path: string, opts?: { dir?: string; host?: string; token?: string; }); cd(subdir: string): GitLabFileStore; keys(): Promise>; get(path: string): Promise; }