export interface TaskInfo { id: string; label: string; url: string; } export declare function parseContestTasks(html: string): TaskInfo[];