import { providers } from 'ethers'; import BaseService from '../commons/BaseService'; import { IERC202612 } from './typechain/IERC202612'; export declare type GetNonceType = { token: string; owner: string; }; export interface ERC20_2612Interface { getNonce: (args: GetNonceType) => Promise; } export declare class ERC20_2612Service extends BaseService implements ERC20_2612Interface { constructor(provider: providers.Provider); getNonce({ token, owner }: GetNonceType): Promise; } //# sourceMappingURL=index.d.ts.map