interface EmployeeType {
  first_name: string;
  last_name: string;
  phone_no: string;
  email: string;
  password: string;
  pay_per_hour: string;
  is_active: boolean;
}

export type { EmployeeType };
