/// <reference types="node" />
import { Address } from "../../domain/Address";
/**
 * Serializes an address into a Buffer that can be transmitted
 * over the wire
 */
export declare function serializeAddress(address: Address): Buffer;
