/**
 * @module paymentMethod
 * @description A list of payment methods
 */
export declare const paymentMethod: readonly ["card", "eft", "wallet", "cash", "voucher", "other"];
export declare type PaymentMethod = (typeof paymentMethod)[number];
