import {Image} from './fileManager'; export type Timestamp = number; export interface MultiLanguageString { [lang: string]: string; } export interface Address { city: string; country?: string; line1: string; line2: string; postCode: string; prefecture: string; } export interface MultiLanguageAddress { [lang: string]: Address; } export type Avatar = Image; export interface Phone { dialCode: string; mobile: string; work: string; home: string; } export type Gender = 'male' | 'female' | 'other';