import type { ToolCallChipEntry } from './createChatMessageToolCallRenderModel';
/**
* Props for rendering the tool-call chip list below one chat message.
*
* @private internal component of ``
*/
export type ChatMessageToolCallChipsProps = {
/**
* Tool-call chip entries to render.
*/
readonly chips: ReadonlyArray;
/**
* Optional click handler for opening tool-call details.
*/
readonly onToolCallClick?: (toolCall: ToolCallChipEntry['toolCall']) => void;
};
/**
* Renders tool-call chips below one chat message.
*
* @private internal component of ``
*/
export declare function ChatMessageToolCallChips({ chips, onToolCallClick }: ChatMessageToolCallChipsProps): import("react/jsx-runtime").JSX.Element | null;