import { Neutral } from "../neutral"; import { Ctx } from "../ctx"; import { Core } from "../core"; import { Value } from "../value"; export declare class TodoNeutral extends Neutral { note: string; t: Value; constructor(note: string, type: Value); readback_neutral(ctx: Ctx): Core; }