import { Accounting } from "./Accounting";
import { BaseCode } from "./BaseCode";
export declare class Paths {
    historiesController: string;
    BaseCode: BaseCode;
    Accounting: Accounting;
    constructor();
    static getValue: <P1 extends keyof Paths, P extends Paths[P1], P2 extends keyof P>(paths: Paths, p1: P1, p2: P2) => P[P2];
}
