import { MaybeArray } from '@fuman/utils'; import { ITelegramClient } from '../../client.types.js'; import { InputPeerLike } from '../../types/peers/peer.js'; import { InputStarGift } from '../../types/premium/star-gift.js'; /** * Toggles whether one or more star gift is pinned to the top of the list */ export declare function togglePinnedStarGifts(client: ITelegramClient, params: { /** One or more gifts to pin */ gifts: MaybeArray; /** Peer where the gift is sent */ peer: InputPeerLike; }): Promise;