import { EMemberType } from '../../member';
import { TokenEntity } from '../../token';
import { ICustomerInfo } from '../interfaces/i-customer-info';
export declare class CustomerInfoEntity implements ICustomerInfo {
    tokenId: string | null;
    customerId: string;
    name: string | null;
    email: string | null;
    phoneNumber: string | null;
    type: EMemberType;
    emailVerified: boolean;
    emailVerifiedAt: Date | null;
    constructor(req?: TokenEntity | null);
}
