import { LivepeerCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import { SDKError } from "../models/errors/sdkerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import * as operations from "../models/operations/index.js"; import { Result } from "../types/fp.js"; /** * Create a webhook * * @remarks * To create a new webhook, you need to make an API call with the events you want to listen for and the URL that will be called when those events occur. */ export declare function webhookCreate(client: LivepeerCore, request: components.WebhookInput, options?: RequestOptions): Promise>; //# sourceMappingURL=webhookCreate.d.ts.map