import { ITelegramClient } from '../../client.types.js'; import { InputStarGift } from '../../types/index.js'; /** * Accept, hide or convert a star gift. * * @returns Whether the action was successful */ export declare function acceptStarGift(client: ITelegramClient, params: { /** Input star gift to accept */ gift: InputStarGift; /** * Action to perform on the gift. * - `save` - save the gift to your profile * - `hide` - hide the gift from your profile * - `convert` - convert the gift to stars (can't be undone) */ action: 'save' | 'hide' | 'convert'; }): Promise;