/** * * ```js * import { StreamRepository } from '@amityco/ts-sdk' * const updated = await StreamRepository.editStream(streamId, { title: 'foobar' }) * ``` * * Updates an {@link Amity.Stream} * * @param streamId The ID of the {@link Amity.Stream} to edit * @param patch The patch data to apply * @returns the updated {@link Amity.Stream} object * * @category Stream API * @async */ export declare const editStream: (streamId: Amity.Stream['streamId'], patch: Patch) => Promise>; //# sourceMappingURL=editStream.d.ts.map