import { UseQueryOptions } from '@tanstack/react-query'; import type { ListUntrackedFilePathsResponseResponse } from '../responses/ListUntrackedFilePathsResponseResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetGitxHealthForRepoQueryQueryParams { /** * @default 0 */ page?: number; /** * @default 20 */ limit?: number; repoName: string; entityType: 'ENVIRONMENTS' | 'INFRA' | 'INPUT_SETS' | 'OVERRIDES' | 'PIPELINES' | 'SERVICES' | 'TEMPLATES'; } export interface GetGitxHealthForRepoQueryHeaderParams { 'Harness-Account'?: string; } export type GetGitxHealthForRepoOkResponse = ResponseWithPagination; export type GetGitxHealthForRepoErrorResponse = unknown; export interface GetGitxHealthForRepoProps extends Omit, 'url'> { queryParams: GetGitxHealthForRepoQueryQueryParams; } export declare function getGitxHealthForRepo(props: GetGitxHealthForRepoProps): Promise; /** * Returns detailed webhook coverage information for the given repository — currently the paginated list of entity file paths that no GitX webhook is tracking, each paired with its owning scope. Use the sibling /v1/gitx-health endpoint for cross-repo metadata. */ export declare function useGetGitxHealthForRepoQuery(props: GetGitxHealthForRepoProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;