import { IUser } from '@shared/interfaces/model'; declare const userMeta: (user: IUser, key: string) => string; declare const userPersonaText: (user: IUser) => string; interface ModelObject { [key: number]: T; } declare const convertModelArrayToObject: (model: T[], key?: string) => ModelObject; declare const formatDate: (date: Date | string) => string; export { userMeta, userPersonaText, ModelObject, convertModelArrayToObject, formatDate };