import { Serialisable, Serialised } from "./serialiser"; export declare class Address implements Serialisable { private readonly address; constructor(address: string); private mLowerCase; toString(): string; private mCheckSummed; toCheckSummedAddress(): string; equal(other: Address): boolean; static TYPE: string; serialise(): { __type__: string; value: string; }; /** * A quick way to check if an address is formatted correctly. * @returns True if address is well-formed */ static isAddress(addr: string): boolean; static deserialise(obj: Serialised
): Address; } //# sourceMappingURL=address.d.ts.map