export = AddressCoder;
declare class AddressCoder extends BaseCoder {
    static from({ type, ...options }: {
        [x: string]: any;
        type: any;
    }): AddressCoder;
    constructor({ type, ...options }: {
        [x: string]: any;
        type: any;
    });
    networkId: any;
    /**
     * @param {string} address
     * @return {Buffer}
     */
    encode(address: string): Buffer;
    /**
     * @param {import('../../util/HexStream')} stream
     * @return {string}
     */
    decode(stream: import('../../util/HexStream')): string;
}
import BaseCoder = require("./BaseCoder");
//# sourceMappingURL=AddressCoder.d.ts.map