import { Type } from "@tsed/core";
export declare class JsonLazyRef {
readonly getType: () => Type<any>;
readonly isLazyRef = true;
constructor(getType: () => Type<any>);
get target(): Type<any>;
get schema(): import("./JsonSchema.js").JsonSchema;
get name(): string;
}