export interface ExecuteWebhookOptions {
    /** Optional HTTP headers to include in the webhook request. */
    headers?: Record<string, string>;
    /** Optional query parameters to include in the webhook request. */
    queryParams?: Record<string, string>;
    /** Optional JSON body to send with the webhook request. */
    body?: any;
    /** Optional files to send with the webhook request. */
    files?: File[];
}
