import { type ReactElement } from 'react'; import type { TODO_any } from '../../../utils/organization/TODO_any'; /** * Rendering options for time tool calls. * * @private function of ChatToolCallModal */ type RenderTimeToolCallDetailsOptions = { /** * Parsed tool call arguments. */ args: Record; /** * Parsed tool result payload. */ resultRaw: TODO_any; /** * Timestamp of the tool call itself. */ toolCallDate: Date | null; /** * Optional locale override used for date formatting. */ locale?: string; /** * Optional translation overrides. */ chatUiTranslations?: import('./ChatProps').ChatUiTranslations; }; /** * Renders the time-specific tool call detail view. * * @param options - Time tool call data. * @returns Time visualization UI. * * @private function of ChatToolCallModal */ export declare function renderTimeToolCallDetails(options: RenderTimeToolCallDetailsOptions): ReactElement; export {};