import type { ChannelAddOptions } from '../schemas/channel';
export declare function addChannelInternal(channelId: string, appId: string, options: ChannelAddOptions, silent?: boolean): Promise<{
    name: string;
}>;
export declare function addChannel(channelId: string, appId: string, options: ChannelAddOptions): Promise<void>;
