import { Model } from 'sequelize-typescript';
import { RentalModel } from './rental.entity';
export declare class JointHirerModel extends Model {
    HirerId: string;
    RentalId: string;
    CustomerId: string;
    CustomerType: string;
    Status: string;
    CreatedById: string;
    CreatedAt: Date;
    UpdatedById: string;
    UpdatedAt: Date;
    RentalPrice: RentalModel;
}
