import { RestCommand } from "../../types.js"; //#region src/rest/commands/utils/flows.d.ts /** * Trigger a flow * @param method * @param id * @param data * @returns Result of the flow, if any. */ declare const triggerFlow: (method: "GET" | "POST", id: string, data?: Record) => RestCommand; //#endregion export { triggerFlow }; //# sourceMappingURL=flows.d.ts.map