import { ID } from '../../../commonStateTypes/common'; export interface Contact { email: string; fullName: string; id: ID; phone: string; } export interface ContactState { contactById: Record; }