import { IManifest } from './types';
export declare class Manifest {
    readonly path: string;
    private readonly rootDir;
    private readonly urlPrefix;
    constructor(args: {
        rootDir: string;
        path: string;
        urlPrefix?: string;
    });
    readonly dir: string;
    getPaths(): Promise<string[]>;
    toObject(args?: {
        loadExtensions?: string[];
    }): Promise<IManifest>;
}
