import { FC, ReactType, ReactNode } from 'react'; import { PartnerListProps } from '../../components/PartnerList'; import { BannerProps } from '../../components/Banner'; import { PackageListProps } from '../../components/PackageList'; import { BackToProps } from '../../components/BackToPage'; export interface EnterprisePartnerPageProps { title?: string; subtitle?: string; isAustria: boolean; isUk: boolean; BannerProps?: BannerProps; PackageList?: ReactType; PackageListProps?: PackageListProps; Search: ReactType; SearchProps: unknown; 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; packages: any; defaultPackages: any; subcategory: any; onSubcategorySelect: (sub: any) => void; showTabInBanner: boolean; BackToProps: BackToProps; Translations: { common: string; offerings: string; items: string; all: string; category: string; }; Campaign?: ReactNode; } declare const EnterprisePartnerPage: FC; export default EnterprisePartnerPage;