import type { FastifyInstance } from "@webiny/handler/types.js"; export interface ExecuteParams { app: FastifyInstance; url: string; payload: any; } export declare const execute: (params: ExecuteParams) => Promise;