import type { ToolCall, ToolCallState } from '../../../types/ToolCall';
/**
 * Resolves one explicit or inferred lifecycle state for a tool call snapshot.
 *
 * @param toolCall - Tool call snapshot to inspect.
 * @returns Resolved lifecycle state.
 *
 * @private internal helper for chat tool-call rendering
 */
export declare function resolveToolCallState(toolCall: ToolCall): ToolCallState;
