import { UseQueryOptions } from '@tanstack/react-query'; import type { DockerResponse } from '../schemas/DockerResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetOrgScopedDockerBuildDetailsQueryPathParams { org: string; } export interface GetOrgScopedDockerBuildDetailsQueryQueryParams { image_path?: string; connector_ref?: string; } export interface GetOrgScopedDockerBuildDetailsQueryHeaderParams { 'Harness-Account'?: string; } export type GetOrgScopedDockerBuildDetailsOkResponse = ResponseWithPagination; export type GetOrgScopedDockerBuildDetailsErrorResponse = unknown; export interface GetOrgScopedDockerBuildDetailsProps extends GetOrgScopedDockerBuildDetailsQueryPathParams, Omit, 'url'> { queryParams: GetOrgScopedDockerBuildDetailsQueryQueryParams; } export declare function getOrgScopedDockerBuildDetails(props: GetOrgScopedDockerBuildDetailsProps): Promise; /** * Retrieves Docker build details for the specified image at organization scope */ export declare function useGetOrgScopedDockerBuildDetailsQuery(props: GetOrgScopedDockerBuildDetailsProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;