import type { SeamHttpApiError, SeamHttpEndpointsWithoutWorkspace, SeamHttpEndpointWithoutWorkspaceQueryPaths, SeamHttpInvalidInputError } from '@seamapi/http'; import { type QueryKey, type UseQueryOptions, type UseQueryResult } from '@tanstack/react-query'; export type UseSeamQueryWithoutWorkspaceParameters = Parameters[0]; export type UseSeamQueryWithoutWorkspaceResult = UseQueryResult, QueryError>; export declare function useSeamQueryWithoutWorkspace(endpointPath: T, parameters?: UseSeamQueryWithoutWorkspaceParameters, options?: Parameters[1] & QueryOptions, QueryError>): UseSeamQueryWithoutWorkspaceResult & { queryKey: QueryKey; }; type QueryData = Awaited>; type QueryError = Error | SeamHttpApiError | SeamHttpInvalidInputError; type QueryOptions = Omit, 'queryKey' | 'queryFn'>; export {};