import { ITelegramClient } from '../../client.types.js'; import { Message } from '../../types/index.js'; /** * Accept or decline a purchase offer for a star gift * * @returns The generated service message */ export declare function resolveStarGiftOffer(client: ITelegramClient, options: { /** ID of the message containing the offer */ message: number; /** Whether to accept or decline the offer */ action: 'accept' | 'decline'; /** * Whether to dispatch the new message event * to the client's update handler. */ shouldDispatch?: true; }): Promise;