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