import type { IndexerAddressValidationResponse, IndexerDelegatedFromResponse, IndexerDelegatedToResponse, IndexerEmailAccountsResponse, IndexerEntitlementResponse, IndexerLeaderboardResponse, IndexerNonceResponse, IndexerPointsResponse, IndexerSignInMessageResponse, IndexerSiteStatsResponse } from '@sudobility/mail_box_types'; export declare class IndexerMockData { static getLeaderboard(count?: number): IndexerLeaderboardResponse; static getSiteStats(): IndexerSiteStatsResponse; static getValidation(username: string): IndexerAddressValidationResponse; static getSigningMessage(walletAddress: string, chainId: number, domain: string): IndexerSignInMessageResponse; static getWalletAccounts(walletAddress: string, emailDomain?: string): IndexerEmailAccountsResponse; static getDelegatedTo(walletAddress: string): IndexerDelegatedToResponse; static getDelegatedFrom(_walletAddress: string): IndexerDelegatedFromResponse; static createNonce(_username: string): IndexerNonceResponse; static getNonce(_username: string): IndexerNonceResponse; static getEntitlement(walletAddress: string): IndexerEntitlementResponse; static getPointsBalance(walletAddress: string): IndexerPointsResponse; } //# sourceMappingURL=mocks.d.ts.map