/** Indicates the gift card type. */ export declare const GiftCardType: { readonly Physical: "PHYSICAL"; readonly Digital: "DIGITAL"; }; export type GiftCardType = (typeof GiftCardType)[keyof typeof GiftCardType];