import { UseQueryOptions } from '@tanstack/react-query'; import type { DockerArtifactDetailIntegrationResponseResponse } from '../responses/DockerArtifactDetailIntegrationResponseResponse'; 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 GetDockerArtifactIntegrationDetailsQueryPathParams { registry_ref: string; artifact: string; version: string; } export interface GetDockerArtifactIntegrationDetailsQueryQueryParams { digest: string; version_type?: 'DIGEST' | 'TAG'; } export type GetDockerArtifactIntegrationDetailsOkResponse = ResponseWithPagination; export type GetDockerArtifactIntegrationDetailsErrorResponse = BadRequestResponse | UnauthenticatedResponse | UnauthorizedResponse | NotFoundResponse | InternalServerErrorResponse; export interface GetDockerArtifactIntegrationDetailsProps extends GetDockerArtifactIntegrationDetailsQueryPathParams, Omit, 'url'> { queryParams: GetDockerArtifactIntegrationDetailsQueryQueryParams; } export declare function getDockerArtifactIntegrationDetails(props: GetDockerArtifactIntegrationDetailsProps): Promise; /** * Get Docker Artifact Integration Details */ export declare function useGetDockerArtifactIntegrationDetailsQuery(props: GetDockerArtifactIntegrationDetailsProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;