import { Competition } from "./types";
export declare const getEventInfoFromWcif: (eventId: string, wcif: Competition) => import("./types").Event | undefined;
export declare const getRoundInfoFromWcif: (roundId: string, wcif: Competition) => import("./types").Round | undefined;
export declare const getEventIdFromRoundId: (roundId: string) => string;
export declare const getCutoffByRoundId: (roundId: string, wcif: Competition) => import("./types").Cutoff | null;
export declare const getLimitByRoundId: (roundId: string, wcif: Competition) => import("./types").TimeLimit | null;
