import { UnauthorizedHandler } from './graphql.js'; import { Variables } from 'graphql-request'; import { TypedDocumentNode } from '@graphql-typed-document-node/core'; /** * Options for making requests to the Webhooks API. */ export interface WebhooksRequestOptions { organizationId: string; query: TypedDocumentNode; token: string; unauthorizedHandler: UnauthorizedHandler; variables?: TVariables; } /** * Executes an org-scoped GraphQL query against the App Management API. * Uses typed documents. * * @param options - The options for the request. * @returns The response of the query of generic type . */ export declare function webhooksRequestDoc(options: WebhooksRequestOptions): Promise;