import { UseQueryOptions } from '@tanstack/react-query'; import type { ClientSetupDetailsResponseResponse } from '../responses/ClientSetupDetailsResponseResponse'; import type { BadRequestResponse } from '../responses/BadRequestResponse'; import type { UnauthenticatedResponse } from '../responses/UnauthenticatedResponse'; import type { UnauthorizedResponse } from '../responses/UnauthorizedResponse'; import type { NotFoundResponse } from '../responses/NotFoundResponse'; import type { InternalServerErrorResponse } from '../responses/InternalServerErrorResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetClientSetupDetailsQueryPathParams { registry_ref: string; } export interface GetClientSetupDetailsQueryQueryParams { artifact?: string; version?: string; artifact_type?: 'dataset' | 'model' | 'module' | 'provider'; } export type GetClientSetupDetailsOkResponse = ResponseWithPagination; export type GetClientSetupDetailsErrorResponse = BadRequestResponse | UnauthenticatedResponse | UnauthorizedResponse | NotFoundResponse | InternalServerErrorResponse; export interface GetClientSetupDetailsProps extends GetClientSetupDetailsQueryPathParams, Omit, 'url'> { queryParams: GetClientSetupDetailsQueryQueryParams; } export declare function getClientSetupDetails(props: GetClientSetupDetailsProps): Promise; /** * Returns CLI Client Setup Details based on package type */ export declare function useGetClientSetupDetailsQuery(props: GetClientSetupDetailsProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;