import * as thrift from "@creditkarma/thrift-server-core"; import * as FootballTeam from "./FootballTeam"; export interface IFootballMatch { homeTeam: FootballTeam.IFootballTeam; awayTeam: FootballTeam.IFootballTeam; } export interface IFootballMatchArgs { homeTeam: FootballTeam.IFootballTeamArgs; awayTeam: FootballTeam.IFootballTeamArgs; } export declare const FootballMatchCodec: thrift.IStructCodec; export declare class FootballMatch extends thrift.StructLike implements IFootballMatch { homeTeam: FootballTeam.IFootballTeam; awayTeam: FootballTeam.IFootballTeam; readonly _annotations: thrift.IThriftAnnotations; readonly _fieldAnnotations: thrift.IFieldAnnotations; constructor(args: IFootballMatchArgs); static read(input: thrift.TProtocol): FootballMatch; static write(args: IFootballMatchArgs, output: thrift.TProtocol): void; write(output: thrift.TProtocol): void; }