import { UseQueryOptions } from '@tanstack/react-query'; import type { DockerArtifactManifestResponseResponse } from '../responses/DockerArtifactManifestResponseResponse'; 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 GetDockerArtifactManifestQueryPathParams { registry_ref: string; artifact: string; version: string; } export interface GetDockerArtifactManifestQueryQueryParams { digest: string; } export type GetDockerArtifactManifestOkResponse = ResponseWithPagination; export type GetDockerArtifactManifestErrorResponse = BadRequestResponse | UnauthenticatedResponse | UnauthorizedResponse | NotFoundResponse | InternalServerErrorResponse; export interface GetDockerArtifactManifestProps extends GetDockerArtifactManifestQueryPathParams, Omit, 'url'> { queryParams: GetDockerArtifactManifestQueryQueryParams; } export declare function getDockerArtifactManifest(props: GetDockerArtifactManifestProps): Promise; /** * Get Docker Artifact Manifest */ export declare function useGetDockerArtifactManifestQuery(props: GetDockerArtifactManifestProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;