declare type TStatus = '9000' | '8000' | '4000' | '5000' | '6001' | '6002'; export interface IResult { resultStatus: TStatus; result: string; memo: string; } export interface IResponse { resultCode: TStatus; returnUrl: string; } export declare function authWithInfo(infoStr: string): Promise; export declare function setAlipaySandbox(isSandbox: boolean): void; export declare function pay(infoStr: string): Promise; export declare function payInterceptorWithUrl(infoStr: string): Promise; export {};