import { UseQueryOptions } from '@tanstack/react-query'; import type { ListGitXWebhookStatusResponseResponse } from '../responses/ListGitXWebhookStatusResponseResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface ListWebhookStatusPerRepoQueryQueryParams { /** * @default 0 */ page?: number; /** * @default 20 */ limit?: number; repoName?: string; entityType: 'ENVIRONMENTS' | 'INFRA' | 'INPUT_SETS' | 'OVERRIDES' | 'PIPELINES' | 'SERVICES' | 'TEMPLATES'; } export interface ListWebhookStatusPerRepoQueryHeaderParams { 'Harness-Account'?: string; } export type ListWebhookStatusPerRepoOkResponse = ResponseWithPagination; export type ListWebhookStatusPerRepoErrorResponse = unknown; export interface ListWebhookStatusPerRepoProps extends Omit, 'url'> { queryParams: ListWebhookStatusPerRepoQueryQueryParams; } export declare function listWebhookStatusPerRepo(props: ListWebhookStatusPerRepoProps): Promise; /** * List webhook status per repo */ export declare function useListWebhookStatusPerRepoQuery(props: ListWebhookStatusPerRepoProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;