import { WithMongooseProps } from './with-mongoose-props'; import { WithTenantProps } from './with-tenant-props'; import { GetValues, PageTypes } from '../constants'; export type ParentEntityTypes = 'Page' | 'Section'; export type SavedEntityTypes = 'Page' | 'Section' | 'Element'; export type StatusTypes = 'Pending' | 'Published'; export type SavedChanges = WithMongooseProps>; export declare const SavedChangesStatusEnum: { PENDING: string; PUBLISHED: string; ERROR: string; }; export type SavedChangesStatus = GetValues;