import { UseQueryOptions } from '@tanstack/react-query'; import type { HelmArtifactManifestResponseResponse } from '../responses/HelmArtifactManifestResponseResponse'; 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 GetHelmArtifactManifestQueryPathParams { registry_ref: string; artifact: string; version: string; } export type GetHelmArtifactManifestOkResponse = ResponseWithPagination; export type GetHelmArtifactManifestErrorResponse = BadRequestResponse | UnauthenticatedResponse | UnauthorizedResponse | NotFoundResponse | InternalServerErrorResponse; export interface GetHelmArtifactManifestProps extends GetHelmArtifactManifestQueryPathParams, Omit, 'url'> { } export declare function getHelmArtifactManifest(props: GetHelmArtifactManifestProps): Promise; /** * Get Helm Artifact Manifest */ export declare function useGetHelmArtifactManifestQuery(props: GetHelmArtifactManifestProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;