import { type GetLogsParams, type GetLogsResponse, type LogEntry, type PostLogParams } from "../types.js";
export declare class AgentLogsService {
    getLogs({ agentTokenContract, page, limit, }: GetLogsParams): Promise<GetLogsResponse>;
    addLog({ agentTokenContract, content, apiKey, txHash, chainId, }: PostLogParams): Promise<LogEntry>;
    formatLogs(data: GetLogsResponse): string;
}
