import { IDelivererMobyo } from '..';
import { IOrder } from '../../../order';
export declare class DelivererMobyoEntity implements IDelivererMobyo {
    active: boolean;
    email?: string | undefined;
    id: string;
    internationalCode: string;
    name: string;
    nickName: string;
    ordersCountDeliveredOnRestaurant: IOrder[];
    phoneNumber: string;
    pictureUrl?: string | undefined;
    tags: string[];
    constructor(data?: Partial<DelivererMobyoEntity>);
}
