import { IFooterNav, ISportsCollection } from './../../molecules/footer.nav/footer.nav.interface'; import { IFooterAddress } from './../../molecules/footer.address/footer.address.interface'; export interface IFooter { company: string; rights: string; rightsLinks: Array; address: IFooterAddress; quickLinks: IFooterNav; cities?: IFooterNav; sports?: ISportsCollection; } export interface IFooterRightsLinks { name: string; url: string; }