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