import type { CreateStampArguments, CreateStampResponse, CollectStampArguments, CollectStampResponse, GetStatsContributorsFilter, GetStatsContributorsResponse } from './types'; export declare const createStamp: ({ env, accountId, cityId, nftId, name, nftType, publicKey, signature, }: CreateStampArguments) => Promise; export declare const collectStamp: ({ env, token, stampId }: CollectStampArguments) => Promise; export declare const getStatsContributors: ({ AccountId, env, }: GetStatsContributorsFilter) => Promise;