import { EasyWalletPayArgs } from './args';
export interface EasyWallet {
    pay(args: EasyWalletPayArgs): Promise<string | void>;
}
