import { Image } from './fileManager'; export declare 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 declare type Avatar = Image; export interface Phone { dialCode: string; mobile: string; work: string; home: string; } export declare type Gender = 'male' | 'female' | 'other';