import { ENV } from '../..'; import type { AuthenticatedUserInfoSmartID, GetAccountsInfoArguments, GetAccountsInfoResponse, TrackAccountsInfoArguments } from './types'; export declare const getAuthenticatedUserInfoSmartID: ({ env, authToken }: any) => Promise; export declare const getAccountsInfo: ({ env, filter, limit, page, }: GetAccountsInfoArguments) => Promise; export declare const getAppsInteractions: ({ env, authToken }: any) => Promise; export declare const getCollectedItems: ({ env, authToken, appID, }: any) => Promise; export declare const getAllCollectedItems: ({ env, authToken, }: any) => Promise; export declare const trackAccountsInfo: ({ accountId, onMessage, onError, }: TrackAccountsInfoArguments) => Promise<() => void>; export declare const tutorialLinks: ({ env }: { env: ENV; }) => Promise; export declare const createStamp: ({ env, secretKey, appId, name, stampImg }: any) => Promise; export declare const mintStamp: ({ env, authToken, stampId, count, dropId }: any) => Promise; export declare const getMintedStamps: ({ env, authToken }: any) => Promise;