import type { Campaign } from '../types.js'; export interface CampaignStatus { campaign: Campaign; state: 'active-boosted' | 'active-normal' | 'upcoming' | 'ended' | 'weekend'; countdown: string; progress: number; } export declare function getActiveCampaign(): CampaignStatus | null;