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 GetAccountScopedDockerBuildDetailsQueryQueryParams { image_path?: string; connector_ref?: string; } export interface GetAccountScopedDockerBuildDetailsQueryHeaderParams { 'Harness-Account'?: string; } export type GetAccountScopedDockerBuildDetailsOkResponse = ResponseWithPagination; export type GetAccountScopedDockerBuildDetailsErrorResponse = unknown; export interface GetAccountScopedDockerBuildDetailsProps extends Omit, 'url'> { queryParams: GetAccountScopedDockerBuildDetailsQueryQueryParams; } export declare function getAccountScopedDockerBuildDetails(props: GetAccountScopedDockerBuildDetailsProps): Promise; /** * Retrieves Docker build details for the specified image at account scope */ export declare function useGetAccountScopedDockerBuildDetailsQuery(props: GetAccountScopedDockerBuildDetailsProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;