import { UseQueryOptions } from '@tanstack/react-query'; import { TreeNode } from '@tracktor/types-treege'; export interface WorkflowsResponse { id: string; label: string; version: string; workflow: TreeNode; } declare const useWorkflowsQuery: (options?: Omit, "queryFn" | "queryKey">) => import('@tanstack/react-query').UseQueryResult; export default useWorkflowsQuery;