import { FC } from 'react'; import { AwardsItemProps } from '../AwardsItem/AwardsItem'; export interface AwardsBannerProps { id: string; awardsItems: AwardsItemProps[]; } export declare const AwardsBanner: FC;