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 { buildLlmSkillsListPreconfiguredQuery, LlmSkillsListPreconfiguredQueryData, prefetchLlmSkillsListPreconfigured, queryKeyLlmSkillsListPreconfigured } from "./llmSkillsListPreconfigured.core.js"; export { buildLlmSkillsListPreconfiguredQuery, type LlmSkillsListPreconfiguredQueryData, prefetchLlmSkillsListPreconfigured, queryKeyLlmSkillsListPreconfigured, }; export type LlmSkillsListPreconfiguredQueryError = SDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError; /** * List preconfigured skills * * @remarks * Returns the list of preconfigured skills that ship with the gateway. These can be referenced in shell tool definitions as { type: 'preconfigured', name: '...' }. */ export declare function useLlmSkillsListPreconfigured(request: operations.ListPreconfiguredSkillsRequest, options?: QueryHookOptions): UseQueryResult; /** * List preconfigured skills * * @remarks * Returns the list of preconfigured skills that ship with the gateway. These can be referenced in shell tool definitions as { type: 'preconfigured', name: '...' }. */ export declare function useLlmSkillsListPreconfiguredSuspense(request: operations.ListPreconfiguredSkillsRequest, options?: SuspenseQueryHookOptions): UseSuspenseQueryResult; export declare function setLlmSkillsListPreconfiguredData(client: QueryClient, queryKeyBase: [parameters: { xOnBehalfOf?: string | undefined; }], data: LlmSkillsListPreconfiguredQueryData): LlmSkillsListPreconfiguredQueryData | undefined; export declare function invalidateLlmSkillsListPreconfigured(client: QueryClient, queryKeyBase: TupleToPrefixes<[ parameters: { xOnBehalfOf?: string | undefined; } ]>, filters?: Omit): Promise; export declare function invalidateAllLlmSkillsListPreconfigured(client: QueryClient, filters?: Omit): Promise; //# sourceMappingURL=llmSkillsListPreconfigured.d.ts.map