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"; /** * Delete a stream * * @remarks * This will also suspend any active stream sessions, so make sure to wait * until the stream has finished. To explicitly interrupt an active * session, consider instead updating the suspended field in the stream * using the PATCH stream API. */ export declare function streamDelete(client: LivepeerCore, id: string, options?: RequestOptions): Promise>; //# sourceMappingURL=streamDelete.d.ts.map