import type { SeamHttpApiError, SeamHttpEndpointsWithoutWorkspace, SeamHttpEndpointWithoutWorkspaceMutationPaths, SeamHttpInvalidInputError } from '@seamapi/http'; import { type UseMutationOptions, type UseMutationResult } from '@tanstack/react-query'; export type UseSeamMutationWithoutWorkspaceVariables = Parameters[0]; export type UseSeamMutationWithoutWorkspaceResult = UseMutationResult, MutationError, UseSeamMutationWithoutWorkspaceVariables>; export declare function useSeamMutationWithoutWorkspace(endpointPath: T, options?: Parameters[1] & MutationOptions, MutationError, UseSeamMutationWithoutWorkspaceVariables>): UseSeamMutationWithoutWorkspaceResult; type MutationData = Awaited>; type MutationError = Error | SeamHttpApiError | SeamHttpInvalidInputError; type MutationOptions = Omit, 'mutationFn'>; export {};