import { LaraJoinPoint } from "../../LaraJoinPoint.js";
import JpPredicate from "./JpPredicate.js";
export default class TypePredicate<T extends typeof LaraJoinPoint> extends JpPredicate {
    private type;
    constructor(type: T);
    jpName(): string;
    isLaraJoinPoint(): boolean;
    isInstance<T extends LaraJoinPoint>(jp: T): boolean;
}
//# sourceMappingURL=TypePredicate.d.ts.map