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