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 room user * * @remarks * Call this endpoint to add a user to a room, specifying a display name at a minimum. * The response will contain a joining URL for Livepeer's default meeting app. * Alternatively the joining token can be used with a custom app. * * @deprecated method: This will be removed in a future release, please migrate away from it as soon as possible. */ export declare function roomCreateUser(client: LivepeerCore, roomUserPayload: components.RoomUserPayload, id: string, options?: RequestOptions): Promise>; //# sourceMappingURL=roomCreateUser.d.ts.map