import { Gift } from '../types'; import { Sticker } from '../types'; export declare class GiftBase implements Gift { id: string; sticker: Sticker; star_count: number; upgrade_star_count: number; total_count: number; remaining_count: number; }