/// <reference types="express" />
export declare type IManifestQuery = {
    path: string;
    markdown?: boolean;
    yaml?: boolean;
    json?: boolean;
};
export declare type IResourceQuery = {
    parse?: boolean;
};
export declare function init(args: {
    rootDir: string;
    manifestPath?: string;
    resourcePath?: string;
}): import("express").Router;
