import { EPayioUserType } from '../enums/user-type.enum';
export interface IPayioJwtPayloadUser {
    phoneNumber: string;
    internationalCode: string;
    email: string | null;
    id: string;
    name: string;
    type: EPayioUserType | null;
}
