import { IAddress, IPerson } from '../interfaces'; import { ObjectBase } from './object.base'; export declare abstract class UserBase extends ObjectBase implements IPerson { TaxIdentificationNo: string; FullName: string; IDNo: string; IDType: string; Email: string; ContactNo: string; DefaultAddress: IAddress; getDetails(): Promise<{ FullName: string; IDNo: string; IDType: string; Email: string; ContactNo: string; }>; }