import { Contact } from '../models'; export declare function getFullName(item: { firstName: string | null | undefined; lastName: string | null | undefined; name: string | null | undefined; }): string | null; export declare function sanitizeContact(contact: Contact, region: string): Contact;