import { TreeNode } from '@tracktor/types-treege'; interface PostWorkflowVariables { workflow: TreeNode; version: string; label?: string; } interface PostWorkflowResponse { workflow_id: string; } declare const usePostWorkflowMutation: () => import('@tanstack/react-query').UseMutationResult; export default usePostWorkflowMutation;