type InputContact = {
  id?: string,
  company?: string,
  phone_number?: string,
  email?: string,
  name?: string
};

export default InputContact;
