import { WithMongooseProps } from './with-mongoose-props' import { WithTenantProps } from './with-tenant-props' import { WithTranslations } from './with-translations' import { AggregationPageTypes } from '../constants' import { Upload } from './upload-file' export type AggregationPage = WithMongooseProps< WithTenantProps<{ name: string description: string translations: WithTranslations<{ name: string description: string }> pageType: AggregationPageTypes previewImage?: Upload previewImageId?: string pageUrl?: string isHighlighted?: boolean }> >