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