import { ValueOf } from '../enum-values'; export declare class PaymentMethodEnumValue { static key: string; static types: { third: string; alipay: string; wxpay: string; }; static get keys(): string[]; static get data(): { [key in keyof typeof PaymentMethodEnumValue.types]: string; }; } export declare type PaymentMethodType = ValueOf;