import { LivepeerCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.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"; /** * Resend a webhook * * @remarks * Use this API to resend the same webhook request. This is useful when * developing and debugging, allowing you to easily repeat the same webhook * to check or fix the behaviour in your handler. */ export declare function webhookResendLog(client: LivepeerCore, id: string, logId: string, options?: RequestOptions): Promise>; //# sourceMappingURL=webhookResendLog.d.ts.map