/// <reference types="node" />
import { Path } from './path';
export declare class Repository {
    private readonly path;
    private readonly name;
    private readonly categories;
    constructor(opts: {
        path: string;
        name: string;
    });
    getFile(path: Path): Promise<Buffer>;
}
