import { GitFileStore } from "../git-file-store"; export declare class GitPath { host: string; repo: string; path: string; constructor(opts: { host: string; repo: string; path?: string; }); private format; private static parse; encode(): string; static decode(str: string): GitPath; formatURL(): string; upward(): GitPath; resolve(path: string): GitPath; createGitFileStore(): GitFileStore; static fromURL(input: string): GitPath; }