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