import { EventAction } from '@botonic/core';
import type { DebugEventConfig } from '../types';
export interface WebviewActionTriggeredDebugEvent {
    action: EventAction.WebviewActionTriggered;
    webview_target_id: string;
    webview_name: string;
}
export declare const getWebviewActionTriggeredEventConfig: (data: WebviewActionTriggeredDebugEvent) => DebugEventConfig;
