import { UseQueryOptions } from '@tanstack/react-query'; import type { ListWebhooksExecutionResponseResponse } from '../responses/ListWebhooksExecutionResponseResponse'; import type { BadRequestResponse } from '../responses/BadRequestResponse'; import type { UnauthenticatedResponse } from '../responses/UnauthenticatedResponse'; import type { UnauthorizedResponse } from '../responses/UnauthorizedResponse'; import type { NotFoundResponse } from '../responses/NotFoundResponse'; import type { InternalServerErrorResponse } from '../responses/InternalServerErrorResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface ListWebhookExecutionsQueryPathParams { registry_ref: string; webhook_identifier: string; } export interface ListWebhookExecutionsQueryQueryParams { /** * @format int64 * @default 1 */ page?: number; /** * @format int64 * @default 20 */ size?: number; } export type ListWebhookExecutionsOkResponse = ResponseWithPagination; export type ListWebhookExecutionsErrorResponse = BadRequestResponse | UnauthenticatedResponse | UnauthorizedResponse | NotFoundResponse | InternalServerErrorResponse; export interface ListWebhookExecutionsProps extends ListWebhookExecutionsQueryPathParams, Omit, 'url'> { queryParams: ListWebhookExecutionsQueryQueryParams; } export declare function listWebhookExecutions(props: ListWebhookExecutionsProps): Promise; /** * Returns Webhook Execution Details List */ export declare function useListWebhookExecutionsQuery(props: ListWebhookExecutionsProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;