import { Core, AlphaCtx } from "../../core"; import { Value } from "../../value"; import { Env } from "../../env"; export declare class TrivialCore extends Core { evaluate(env: Env): Value; repr(): string; alpha_repr(ctx: AlphaCtx): string; }