import { UseQueryOptions } from '@tanstack/react-query'; import type { GetGitXWebhookEventFileValidationResponseResponse } from '../responses/GetGitXWebhookEventFileValidationResponseResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GitxWebhookEventFileValidationQueryPathParams { 'gitx-webhook-event': string; } export interface GitxWebhookEventFileValidationQueryQueryParams { /** * @default 0 */ page?: number; /** * @default 20 */ limit?: number; } export interface GitxWebhookEventFileValidationQueryHeaderParams { 'Harness-Account'?: string; } export type GitxWebhookEventFileValidationOkResponse = ResponseWithPagination; export type GitxWebhookEventFileValidationErrorResponse = unknown; export interface GitxWebhookEventFileValidationProps extends GitxWebhookEventFileValidationQueryPathParams, Omit, 'url'> { queryParams: GitxWebhookEventFileValidationQueryQueryParams; } export declare function gitxWebhookEventFileValidation(props: GitxWebhookEventFileValidationProps): Promise; /** * Get file validations for a given event identifier */ export declare function useGitxWebhookEventFileValidationQuery(props: GitxWebhookEventFileValidationProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;