export declare type Event_District_Points = { /** * Points gained for each team at the event. Stored as a key-value pair with the team key as the key, and an object describing the points as its value. */ points: Record; /** * Tiebreaker values for each team at the event. Stored as a key-value pair with the team key as the key, and an object describing the tiebreaker elements as its value. */ tiebreakers?: Record; qual_wins?: number; }>; };