import { FC, ReactType, ReactNode } from 'react'; import { PartnerListProps } from '../../components/PartnerList'; import { BannerProps } from '../../components/Banner'; import { PackageListProps } from '../../components/PackageList'; export interface HomepageProps { title?: string; subtitle?: string; isAustria: boolean; isUk: boolean; BannerProps?: BannerProps; PackageList?: ReactType; PackageListProps?: PackageListProps; Search: ReactType; SearchProps: any; FeaturedPartnersList: ReactType; FeaturedPartnersListProps: PartnerListProps; EnterprisePartnerList: ReactType; SectionHowToProps?: { items: { title: string; image: unknown; }[]; Image: ReactType; }; SectionServicesProps?: { title: string; items: { title: string; image: unknown; }[]; Image: ReactType; }; recommendedPrice?: string; SectionAboutMila?: ReactNode; children?: ReactNode; hasCustomBanner?: boolean; CustomBanner?: ReactType; Alerts?: ReactNode; CategoryTab: ReactType; } declare const Homepage: FC; export default Homepage;