import { ITelegramClient } from '../../client.types.js';
import { Chat } from '../../types/index.js';
/**
 * Create a new broadcast channel
 *
 * @returns  Newly created channel
 */
export declare function createChannel(client: ITelegramClient, params: {
    /**
     * Channel title
     */
    title: string;
    /**
     * Channel description
     */
    description?: string;
}): Promise<Chat>;
