import { GenesisInfo } from ".";
export declare class Nft1List {
    static SearchForNftsInGroup(groupIdHex: string, options?: {
        createdAfterHeight: number;
        createdBeforeHeight: number;
    }): Promise<GenesisInfo[]>;
    static GetConfirmedNftTokenHolders(groupIdHex: string): Promise<Map<string, string>>;
}
