type CustomerInterlocutor = {
    firstname?: string,
    lastname?: string,
    email: string,
};

export default CustomerInterlocutor;
