import { Value } from "../value"; import { Ctx } from "../ctx"; declare type Class = new (...args: any[]) => T; export declare function expect(ctx: Ctx, value: Value, TheClass: Class): T; export {};