import * as z from "zod/v3"; export type DeleteGiftCardGlobals = { merchantAccountId?: string | undefined; }; export type DeleteGiftCardRequest = { /** * The ID of the gift card. */ giftCardId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; /** @internal */ export type DeleteGiftCardRequest$Outbound = { gift_card_id: string; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const DeleteGiftCardRequest$outboundSchema: z.ZodType; export declare function deleteGiftCardRequestToJSON(deleteGiftCardRequest: DeleteGiftCardRequest): string; //# sourceMappingURL=deletegiftcard.d.ts.map