import type * as CandidApi from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; export declare const NoteUpdate: core.serialization.Schema; export declare namespace NoteUpdate { type Raw = NoteUpdate.Set | NoteUpdate.Remove; interface Set { type: "set"; value: string; } interface Remove { type: "remove"; } }