export interface Entity { id: string; owner: string; editors?: string[]; } export interface RawEntity { id?: string; $key?: string; owner: string; editors?: string[]; } export declare const parseEntity: (it: any) => { id: any; owner: any; editors: any; }; export * from '../comment/comment.model'; export * from '../group/group.model'; export * from '../item/item.model'; export * from '../meeting/meeting.model'; export * from '../group/office.model'; export * from '../user/user.model'; export * from '../vote/vote.model';