import { ITelegramClient } from '../../client.types.js';
import { BoostSlot } from '../../types/premium/boost-slot.js';
/**
 * Get boost slots information of the current user.
 *
 * Includes information about the currently boosted channels,
 * as well as the slots that can be used to boost other channels.
 */
export declare function getMyBoostSlots(client: ITelegramClient): Promise<BoostSlot[]>;
