export interface AutoPayConfig { enabled: boolean; walletPrivateKey: string; rpcUrl: string; maxGasPrice?: string; whitelist?: string[]; } export interface SetAutoPayParams { agentId: string; walletPrivateKey: string; rpcUrl?: string; maxGasPrice?: string; whitelist?: string[]; } export interface AutoPayResult { agentId: string; enabled: boolean; walletAddress: string; rpcUrl: string; } export declare function setAutoPay(params: SetAutoPayParams): Promise; export declare function getAutoPayConfig(agentId: string): Promise; export declare function disableAutoPay(agentId: string): Promise<{ agentId: string; enabled: boolean; }>;