/** * ```js * import { createChannel } from '@amityco/ts-sdk' * const created = await createChannel({ displayName: 'foobar' }) * ``` * * Creates an {@link Amity.Channel} * * @param bundle The data necessary to create a new {@link Amity.Channel} * @returns The newly created {@link Amity.Channel} * * @category Channel API * @async */ export declare const createChannel: (bundle: { type: T; userIds?: string[] | undefined; videoStreamId?: string | undefined; postId?: string | undefined; roomId?: string | undefined; } & Pick, "displayName" | "avatarFileId" | "isPublic" | "tags" | "metadata">) => Promise>>; //# sourceMappingURL=createChannel.d.ts.map