import { Address } from "../interfaces/Address";
import * as jose from "node-jose";
export declare class ResolvedCryptoAddressWithThumbprint {
    constructor(network: string, environment: string, address: Address, key: jose.JWK.Key, thumbprint: string, thumbprintHex: string, thumbprintMatrix: string[][]);
    network: string;
    environment: string;
    address: Address;
    publicKey: jose.JWK.Key;
    thumbprint: string;
    thumbprintHex: string;
    thumbprintMatrix: string[][];
}
