import { EPayioUserType } from '../enums/user-type.enum';
import { IPayioJwtPayloadUser } from '../interfaces/i-payload-user';
export declare class PayioJwtPayloadUserEntity implements IPayioJwtPayloadUser {
    email: string | null;
    id: string;
    internationalCode: string;
    name: string;
    phoneNumber: string;
    type: EPayioUserType | null;
    constructor(data?: Partial<PayioJwtPayloadUserEntity>);
}
