import type * as CandidApi from "../../../index"; export type UpdatableIdentifier = CandidApi.UpdatableIdentifier.Add | CandidApi.UpdatableIdentifier.Update | CandidApi.UpdatableIdentifier.Remove; export declare namespace UpdatableIdentifier { interface Add extends CandidApi.IdentifierCreate { type: "add"; } interface Update extends CandidApi.IdentifierUpdate { type: "update"; } interface Remove { type: "remove"; value: CandidApi.IdentifierId; } }