import { ITelegramClient } from '../../client.types.js';
import { ArrayWithTotal, InputPeerLike, Chat } from '../../types/index.js';
/**
 * Get channels that are similar to a given channel
 *
 * > **Note**: This method only returns the channels that the current user
 * > is not subscribed to. For non-premium users, this method will only return
 * > a few channels (with the total number of similar channels being specified in `.total`)
 * >
 * > Returns empty array in case there are no similar channels available.
 */
export declare function getSimilarChannels(client: ITelegramClient, channel: InputPeerLike): Promise<ArrayWithTotal<Chat>>;
