import { Exp, ExpMeta } from "../../exp"; import { Core } from "../../core"; import { Ctx } from "../../ctx"; import { Value } from "../../value"; export declare class Pi extends Exp { meta: ExpMeta; name: string; arg_t: Exp; ret_t: Exp; constructor(name: string, arg_t: Exp, ret_t: Exp, meta: ExpMeta); free_names(bound_names: Set): Set; subst(name: string, exp: Exp): Pi; infer(ctx: Ctx): { t: Value; core: Core; }; pi_args_repr(): Array; pi_ret_t_repr(): string; repr(): string; }