import { PositionEnum } from './PositionEnum';
/** Contact Entity */
export interface Contact {
    /** Contact Email */
    email: string;
    /** Contact First Name */
    firstName: string;
    /** Contact Job Title */
    jobTitle?: string;
    /** Contact Last Name */
    lastName: string;
    /** Contact Phone */
    phone: string;
    /** Contact Position */
    position: PositionEnum;
}
//# sourceMappingURL=Contact.d.ts.map