/** * An `Award_Recipient` object represents the team and/or person who received an award at an event. */ export declare type Award_Recipient = { /** * The TBA team key for the team that was given the award. May be null. */ team_key?: string; /** * The name of the individual given the award. May be null. */ awardee?: string; };