import { CountryCodeType } from '../core/entity'; import { CoreEntity } from '../core/entity'; export interface LifestyleDocument extends CoreEntity { image: string; name: string; sponsorId: string; sponsorImage: string; admins: string[]; businesses: string[]; brands: string[]; products: string[]; vouchers: string[]; surveys: string[]; permanent: boolean; startDate: any; endDate: any; market: CountryCodeType; }