import type { CSSProperties, ComponentType } from 'react';
import type { ActionExecuted } from '../../sdk-types';
export interface ToolResultRendererProps {
    action: ActionExecuted;
    /** Renderers custom por intent */
    customRenderers?: Record<string, ComponentType<{
        action: ActionExecuted;
    }>>;
    style?: CSSProperties;
}
export declare function ToolResultRenderer({ action, customRenderers, style }: ToolResultRendererProps): import("react/jsx-runtime").JSX.Element;
