import type { VC } from "../VC";
import type { Predicate } from "./Predicate";
/**
 * Always passes; used for e.g. globally accessed objects.
 */
export declare class True implements Predicate<never> {
    readonly name: string;
    check(_vc: VC): Promise<boolean>;
}
//# sourceMappingURL=True.d.ts.map