import { ITelegramClient } from '../../client.types.js'; import { InputStarGift } from '../../types/index.js'; import { InputStarsAmount } from '../premium/_normalize-stars-amount.js'; /** Set resale price for an owned star gift */ export declare function setResaleStarGiftPrice(client: ITelegramClient, params: { /** Star gift to update the price of */ gift: InputStarGift; /** * New price of the gift (in stars), or `null` to unlist */ price: InputStarsAmount | null; }): Promise;