import { IUser } from '../../../users';
import { IPayioUserReport } from './i-user-report';
export interface IPayioUser extends IUser {
    accessCode: string | null;
    accessCodeExpiration: Date | null;
    code: string | null;
    currentCompanyId: string | null;
    currentCompanyName: string | null;
    faceId: string | null;
    faceImage64: string | null;
    faceLastUpdate: Date | null;
    reports: IPayioUserReport[];
}
