import { ITelegramClient } from '../../client.types.js';
import { StarGiftValue } from '../../types/premium/star-gift-value.js';
/**
 * Get the value of a unique star gift
 */
export declare function getStarGiftValue(client: ITelegramClient, params: {
    /** Slug of the star gift */
    slug: string;
}): Promise<StarGiftValue>;
