import * as z from "zod/v3"; import * as components from "../components/index.js"; export type CreateGiftCardGlobals = { merchantAccountId?: string | undefined; }; export type CreateGiftCardRequest = { /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; giftCardCreate: components.GiftCardCreate; }; /** @internal */ export type CreateGiftCardRequest$Outbound = { merchantAccountId?: string | null | undefined; GiftCardCreate: components.GiftCardCreate$Outbound; }; /** @internal */ export declare const CreateGiftCardRequest$outboundSchema: z.ZodType; export declare function createGiftCardRequestToJSON(createGiftCardRequest: CreateGiftCardRequest): string; //# sourceMappingURL=creategiftcard.d.ts.map