/**
 * venue.ts — Static venue metadata for HCW (Home Crowd + Weather) insight.
 *
 * Maps team short codes → venue info (indoor/outdoor, lat/lon, capacity, name).
 * Since rm_events has no venue columns, this is a static lookup.
 */
export interface VenueInfo {
    name: string;
    city: string;
    lat: number;
    lon: number;
    indoor: boolean;
    capacity: number;
    surface?: string;
    altitude?: number;
}
/**
 * Look up venue info for a home team.
 * Tries exact short code first, then league-qualified codes (e.g., CHI_NFL, CHI_MLB).
 */
export declare function getVenue(homeShort: string, league?: string): VenueInfo | null;
/**
 * Determine if a game is played indoors based on the home team's venue.
 * Returns true for domed/indoor venues (NBA, NHL, some NFL/MLB).
 */
export declare function isIndoorGame(homeShort: string, league?: string): boolean;
/**
 * Check if venue is at high altitude (>4000 ft) — relevant for game performance.
 */
export declare function isHighAltitude(homeShort: string, league?: string): boolean;
//# sourceMappingURL=venue.d.ts.map