import { InvalidateQueryFilters, QueryClient, UseQueryResult, UseSuspenseQueryResult } from "@tanstack/react-query"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKError } from "../models/errors/sdkerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import * as operations from "../models/operations/index.js"; import { QueryHookOptions, SuspenseQueryHookOptions, TupleToPrefixes } from "./_types.js"; import { buildLlmConversationsListQuery, LlmConversationsListQueryData, prefetchLlmConversationsList, queryKeyLlmConversationsList } from "./llmConversationsList.core.js"; export { buildLlmConversationsListQuery, type LlmConversationsListQueryData, prefetchLlmConversationsList, queryKeyLlmConversationsList, }; export type LlmConversationsListQueryError = SDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError; /** * List conversations * * @remarks * List all conversations for the authenticated user with pagination support. */ export declare function useLlmConversationsList(request: operations.ConversationsListRequest, options?: QueryHookOptions): UseQueryResult; /** * List conversations * * @remarks * List all conversations for the authenticated user with pagination support. */ export declare function useLlmConversationsListSuspense(request: operations.ConversationsListRequest, options?: SuspenseQueryHookOptions): UseSuspenseQueryResult; export declare function setLlmConversationsListData(client: QueryClient, queryKeyBase: [ parameters: { after?: string | undefined; limit?: number | undefined; order?: operations.Order | undefined; metadata?: operations.Metadata | undefined; search?: string | undefined; xOnBehalfOf?: string | undefined; } ], data: LlmConversationsListQueryData): LlmConversationsListQueryData | undefined; export declare function invalidateLlmConversationsList(client: QueryClient, queryKeyBase: TupleToPrefixes<[ parameters: { after?: string | undefined; limit?: number | undefined; order?: operations.Order | undefined; metadata?: operations.Metadata | undefined; search?: string | undefined; xOnBehalfOf?: string | undefined; } ]>, filters?: Omit): Promise; export declare function invalidateAllLlmConversationsList(client: QueryClient, filters?: Omit): Promise; //# sourceMappingURL=llmConversationsList.d.ts.map