export interface ApiEndpoints { micropay: string; reverse: string; unifiedorder: string; orderquery: string; closeorder: string; refund: string; refundquery: string; downloadbill: string; downloadfundflow: string; send_coupon: string; query_coupon_stock: string; querycouponsinfo: string; transfers: string; gettransferinfo: string; sendredpack: string; sendgroupredpack: string; gethbinfo: string; paybank: string; querybank: string; getsignkey: string; middleware_nativePay: string; middleware_refund: string; getpublickey: string; combinedorder: string; } export declare type Endpoint = keyof ApiEndpoints; export declare const createEndpoints: (sandbox?: boolean | undefined) => ApiEndpoints;