import type * as CandidApi from "../../../index"; export type NoteUpdate = CandidApi.NoteUpdate.Set | CandidApi.NoteUpdate.Remove; export declare namespace NoteUpdate { interface Set { type: "set"; value: string; } interface Remove { type: "remove"; } }