import { type GetRecentLogsOptions, type LogEntry } from '@salesforce/b2c-tooling-sdk/operations/logs'; import type { B2CInstance } from '@salesforce/b2c-tooling-sdk'; import type { McpTool } from '../../utils/index.js'; import type { Services } from '../../services.js'; import type { ServerContext } from '../../server-context.js'; export interface LogsGetRecentInjections { getRecentLogs?: (instance: B2CInstance, options?: GetRecentLogsOptions) => Promise; } export declare function createLogsGetRecentTool(loadServices: () => Promise | Services, serverContext?: ServerContext, injections?: LogsGetRecentInjections): McpTool;