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