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