import { ITelegramClient } from '../../client.types.js';
import { ArrayPaginated, InputPeerLike } from '../../types/index.js';
import { Boost } from '../../types/premium/boost.js';
/**
 * Get boosts of a channel
 */
export declare function getBoosts(client: ITelegramClient, peerId: InputPeerLike, params?: {
    /**
     * Offset for pagination
     */
    offset?: string;
    /**
     * Maximum number of boosters to fetch
     *
     * @default  100
     */
    limit?: number;
}): Promise<ArrayPaginated<Boost, string>>;
