import { ITelegramClient } from '../../client.types.js'; import { InputPeerLike, Message } from '../../types/index.js'; export declare function buyResaleGift(client: ITelegramClient, params: { /** Slug of the star gift to buy */ slug: string; /** ID of the user to buy the gift for */ recipient: InputPeerLike; /** * Whether to dispatch the new message event * to the client's update handler. */ shouldDispatch?: true; /** Whether to use TON currency for payment */ ton?: boolean; }): Promise;