/**
 *
 * @export
 * @interface ExecuteWebhookEventRequest
 */
export interface ExecuteWebhookEventRequest {
    [key: string]: unknown;
}
export declare function ExecuteWebhookEventRequestFromJSON(json: any): ExecuteWebhookEventRequest;
export declare function ExecuteWebhookEventRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecuteWebhookEventRequest;
export declare function ExecuteWebhookEventRequestToJSON(value?: ExecuteWebhookEventRequest | null): any;
