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