import { UserEntity } from '../../../users';
import { IPayioUserReport } from '../interfaces';
import { IPayioUser } from '../interfaces/i-user';
export declare class PayioUserEntity extends UserEntity implements IPayioUser {
    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[];
    constructor(data?: Partial<PayioUserEntity>);
}
