import { Contact } from '../types'; export declare class ContactBase implements Contact { phone_number: string; first_name: string; last_name: string; user_id: number; vcard: string; }