import type { AgentProfile, PolicyContext } from './types'; export declare function getOrCreateAgent(address: string): AgentProfile; export declare function getAgent(address: string): AgentProfile | undefined; export declare function getAllAgents(): AgentProfile[]; export declare function getTopAgents(n: number): AgentProfile[]; export declare function recordApproval(address: string, txTo: string, amount: number): AgentProfile; export declare function recordDenial(address: string, tx?: PolicyContext['transaction'], amount?: number): AgentProfile; export declare function recordOverride(address: string): AgentProfile | undefined; export declare function addVerifiedHuman(address: string, nullifierHash: string): AgentProfile; export declare function isVerifiedHuman(address: string): boolean; export declare function setWebBotAuthVerified(address: string): AgentProfile; export declare function setOWSWallet(address: string, walletId: string, apiKeyId: string): AgentProfile; //# sourceMappingURL=store.d.ts.map