import { QueryClient, QueryFunctionContext, QueryKey } from "@tanstack/react-query"; import { SDKCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import * as operations from "../models/operations/index.js"; export type LlmUsageVectorStoresQueryData = operations.GetVectorStoresUsageResponseBody; export declare function prefetchLlmUsageVectorStores(queryClient: QueryClient, client$: SDKCore, request: operations.GetVectorStoresUsageRequest, options?: RequestOptions): Promise; export declare function buildLlmUsageVectorStoresQuery(client$: SDKCore, request: operations.GetVectorStoresUsageRequest, options?: RequestOptions): { queryKey: QueryKey; queryFn: (context: QueryFunctionContext) => Promise; }; export declare function queryKeyLlmUsageVectorStores(parameters: { startTime: number; endTime?: number | undefined; bucketWidth?: components.BucketWidth | undefined; limit?: number | undefined; page?: string | undefined; userIds?: Array | undefined; externalUserIds?: Array | undefined; allOrgs?: string | undefined; orgIds?: Array | undefined; groupBy?: Array | undefined; xOnBehalfOf?: string | undefined; }): QueryKey; //# sourceMappingURL=llmUsageVectorStores.core.d.ts.map