import { EthereumAccountAddress } from "./EthereumAccountAddress";
import { EthereumContractAddress } from "./EthereumContractAddress";
import { RegistryTokenId } from "./RegistryTokenId";
import { Signature } from "./Signature";
export declare class LazyMintingSignature {
    registryAddress: EthereumContractAddress;
    mintingSignature: Signature;
    tokenId: RegistryTokenId;
    ownerAccountAddress: EthereumAccountAddress;
    registrationData: string;
    registrarAddress: EthereumAccountAddress;
    tokenClaimed: boolean;
    constructor(registryAddress: EthereumContractAddress, mintingSignature: Signature, tokenId: RegistryTokenId, ownerAccountAddress: EthereumAccountAddress, registrationData: string, registrarAddress: EthereumAccountAddress, tokenClaimed: boolean);
}
//# sourceMappingURL=LazyMintingSignature.d.ts.map