export interface PayResult { code?: number; memo?: string; result?: string; } export declare type Listener = (...args: any[]) => any;