import { Model } from 'sequelize'; import { IDriverModelAttributes } from '../../interfaces/driverInterface'; import { TDriverModelCreationAttributes } from '../../types/driverType'; import { APP_TYPE, COMMAN_STATUS } from '../../constants/app'; export declare class DriverModel extends Model { id: string; instituteId: string; firstName: string; lastName: string; address1: string; address2?: string; pinCode: string; taluka?: string; profileImage?: string; campusId?: string; academicCalendarId?: string; mobile?: string; city: number; state: number; country: number; area: string; aadharCardNumber: string; aadharCard: string; drivingLicenseNumber: string; drivingLicense: string; appType?: APP_TYPE; status: COMMAN_STATUS; district?: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt?: Date; static associate(models: any): void; static addHooks(): void; } export default DriverModel;