import { UseQueryOptions } from '@tanstack/react-query'; import type { ReleaseDetailsResponseResponse } from '../responses/ReleaseDetailsResponseResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetV1ReleaseDetailsQueryHeaderParams { 'Harness-Account'?: string; } export type GetV1ReleaseDetailsOkResponse = ResponseWithPagination; export type GetV1ReleaseDetailsErrorResponse = unknown; export interface GetV1ReleaseDetailsProps extends Omit, 'url'> { } export declare function getV1ReleaseDetails(props: GetV1ReleaseDetailsProps): Promise; /** * Return details of service and environment mapped to pods namespace and release-name for a given account. */ export declare function useGetV1ReleaseDetailsQuery(props: GetV1ReleaseDetailsProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;