export declare type Linescore = { copyright?: string; currentInning?: number; currentInningOrdinal?: string; inningState?: string; inningHalf?: string; isTopInning?: false; scheduledInnings?: number; innings?: Array; teams?: { home?: LinescoreTeamSummary; away?: LinescoreTeamSummary; }; defense?: { pitcher?: LinescorePlayer; catcher?: LinescorePlayer; first?: LinescorePlayer; second?: LinescorePlayer; third?: LinescorePlayer; shortstop?: LinescorePlayer; left?: LinescorePlayer; center?: LinescorePlayer; right?: LinescorePlayer; batter?: LinescorePlayer; onDeck?: LinescorePlayer; inHole?: LinescorePlayer; battingOrder?: number; team?: { id?: number; name?: string; link?: string; }; }; offense?: { batter?: LinescorePlayer; onDeck?: LinescorePlayer; inHole?: LinescorePlayer; first?: LinescorePlayer; pitcher?: LinescorePlayer; battingOrder?: number; team?: { id?: number; name?: string; link?: string; }; }; balls?: number; strikes?: number; outs?: number; }; export declare type LinescoreInning = { num?: number; ordinalNum?: string; home?: LinescoreTeamSummary; away?: LinescoreTeamSummary; }; export declare type LinescorePlayer = { id?: number; fullName?: string; link?: string; }; export declare type LinescoreTeamSummary = { runs?: number; hits?: number; errors?: number; leftOnBase?: number; };