export type HookRenderChunkStart = {
    action: 'HookRenderChunkStart';
    plugin_name: string;
    /**
     * The index of the plugin in the plugin list. It's unique to each plugin.
     */
    plugin_id: number;
    call_id: string;
    content: string;
};
