import { ModuleMetadata } from '@nestjs/common'; export declare const WECHAT_PAY_OPTIONS = "WECHAT_PAY_OPTIONS"; export interface WechatPayOptions { appId: string; mchId: string; publicKey: string; privateKey: string; key?: string; serialNo?: string; } export interface WechatPayModuleOptions extends Pick { inject?: any[]; useFactory: (...args: any[]) => Promise | WechatPayOptions; } //# sourceMappingURL=wechat-pay.options.d.ts.map