import { BaseParamType } from '../../../params/_Base';
export declare class MissingReference {
    private param;
    readonly path: string;
    constructor(param: BaseParamType, path: string);
    absolutePath(): string | null | undefined;
    matchesPath(path: string): boolean;
    resolveMissingDependencies(): void;
}
