import { EthereumAccountAddress } from "./EthereumAccountAddress";
import { RegistryTokenId } from "./RegistryTokenId";
export declare class RegistryEntry {
    label: string;
    tokenId: RegistryTokenId;
    owner: EthereumAccountAddress;
    tokenURI: string | null;
    index: number | null;
    constructor(label: string, tokenId: RegistryTokenId, owner: EthereumAccountAddress, tokenURI: string | null, index: number | null);
}
//# sourceMappingURL=RegistryEntry.d.ts.map